forked from csu-hmc/opty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (40 loc) · 1.52 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env python
from setuptools import setup, find_packages
exec(open('opty/version.py').read())
setup(
name='opty',
version=__version__,
author='Jason Keith Moore',
author_email='[email protected]',
packages=find_packages(),
url='http://github.com/csu-hmc/opty',
license='LICENSE.txt',
description=('Tools for optimizing dynamic systems using direct '
'collocation.'),
long_description=open('README.rst').read(),
install_requires=['numpy>=1.6.1',
'scipy>=0.9.0',
'sympy>0.7.5',
'cython',
'ipopt',
],
extras_require={'examples': ['pydy>=0.2.1',
'matplotlib>=1.1.1rc',
'tables',
],
'doc': ['sphinx',
'numpydoc',
],
},
tests_require=['nose'],
test_suite='nose.collector',
classifiers=['Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Physics']
)