-
Notifications
You must be signed in to change notification settings - Fork 84
/
setup.py
31 lines (30 loc) · 974 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
26
27
28
29
30
31
from os.path import exists
from setuptools import setup
setup(
name='sympybotics',
version='1.0-dev',
author='Cristovao D. Sousa',
author_email='[email protected]',
description='Robot dynamic symbolic model generator',
license='BSD',
keywords='robot dynamics',
url='http://github.com/cdsousa/sympybotics',
packages=['sympybotics',
'sympybotics.dynamics',
'sympybotics.dynident',
'sympybotics.symcode',
'sympybotics.tools'],
long_description=open('README.md').read() if exists('README.md') else '',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Intended Audience :: Education',
'Intended Audience :: Manufacturing',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Software Development :: Code Generators',
],
)