forked from SolidCode/SolidPython
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·25 lines (24 loc) · 945 Bytes
/
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
# from distutils.core import setup
from setuptools import setup, find_packages
setup(
name='solidpython',
version='0.1.2',
description='Python interface to the OpenSCAD declarative geometry language',
author='Evan Jones',
author_email='[email protected]',
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(),
install_requires=['euclid', 'PyPNG'],
)