Files
cadquery/setup.py

42 lines
1.6 KiB
Python
Raw Normal View History

from setuptools import setup
2013-04-23 21:31:56 -04:00
2013-04-14 18:48:45 -04:00
setup(
name='cadquery',
version='0.3.0',
2013-04-14 18:48:45 -04:00
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',
2013-04-23 21:31:56 -04:00
long_description=open('README.txt').read(),
packages=['cadquery','cadquery.contrib','cadquery.freecad_impl','cadquery.plugins','tests'],
2013-04-14 18:48:45 -04:00
include_package_data=True,
zip_safe=False,
platforms='any',
test_suite='tests',
2013-04-23 21:31:56 -04:00
2013-04-14 18:48:45 -04:00
classifiers=[
# As from http://pypi.python.org/pypi?%3Aaction=list_classifiers
#'Development Status :: 1 - Planning',
#'Development Status :: 2 - Pre-Alpha',
2015-09-01 15:32:32 -04:00
#'Development Status :: 3 - Alpha',
2013-04-14 18:48:45 -04:00
#'Development Status :: 4 - Beta',
2015-09-01 15:32:32 -04:00
'Development Status :: 5 - Production/Stable',
2013-04-14 18:48:45 -04:00
#'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',
2013-04-23 21:31:56 -04:00
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
2013-04-14 18:48:45 -04:00
'Operating System :: POSIX',
'Operating System :: MacOS',
'Operating System :: Unix',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet',
'Topic :: Scientific/Engineering'
]
)