diff --git a/changes.md b/changes.md index e69de29..bdd9b1b 100644 --- a/changes.md +++ b/changes.md @@ -0,0 +1,7 @@ +Changes +======= + + +v0.1 +----- + * Initial Version \ No newline at end of file diff --git a/setup.py b/setup.py index e69de29..873d085 100644 --- a/setup.py +++ b/setup.py @@ -0,0 +1,43 @@ +setup( + name='cadquery', + version=get_version(), + url='https://github.com/dcowden/cadquery', + license='LGPL', + author='David Cowden', + author_email='dave.cowden@gmail.com', + description='CadQuery is a parametric scripting language for creating and traversing CAD models', + long_description=__doc__, + packages=find_packages(), + include_package_data=True, + zip_safe=False, + platforms='any', + install_requires=['FreeCAD'], #how to list FreeCAD here? + #entry_points='''\ + #[console_scripts] + ##rqworker = rq.scripts.rqworker:main + #rqinfo = rq.scripts.rqinfo:main + #''', + classifiers=[ + # As from http://pypi.python.org/pypi?%3Aaction=list_classifiers + #'Development Status :: 1 - Planning', + #'Development Status :: 2 - Pre-Alpha', + 'Development Status :: 3 - Alpha', + #'Development Status :: 4 - Beta', + #'Development Status :: 5 - Production/Stable', + #'Development Status :: 6 - Mature', + #'Development Status :: 7 - Inactive', + 'Intended Audience :: Developers', + 'Intended Audience :: End Users/Desktop', + 'Intended Audience :: Information Technology', + 'Intended Audience :: Science/Research', + 'Intended Audience :: System Administrators', + 'License :: OSI Approved :: LGPL License', + 'Operating System :: POSIX', + 'Operating System :: MacOS', + 'Operating System :: Unix', + 'Programming Language :: Python', + 'Topic :: Software Development :: Libraries :: Python Modules', + 'Topic :: Internet', + 'Topic :: Scientific/Engineering' + ] +) \ No newline at end of file