forked from SolidCode/SolidPython
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·32 lines (28 loc) · 1.27 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# from distutils.core import setup
from setuptools import setup, find_packages
setup(name='solidpython',
version='0.1.1',
description='Python interface to the OpenSCAD declarative geometry language',
author='Evan Jones',
author_email='evan_t_jones@mac.com',
url='https://github.com/SolidCode/SolidPython',
py_modules=['solid'],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Mathematics",
],
packages = find_packages(),
data_files = [ ('solid/test', ['solid/test/run_all_tests.sh']),
('solid/examples',['solid/examples/run_all_examples.sh',
'solid/examples/scad_to_include.scad']),
('', ['README.md']),
],
install_requires = ['euclid'] ,
)