-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
37 lines (34 loc) · 1.3 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from pydy_code_gen import __version__
setup(
name='pydy-code-gen',
version=__version__,
author='Jason K. Moore',
author_email='[email protected]',
url="https://github.com/PythonDynamics/pydy-code-gen/",
description='Code generation for multibody dynamic systems.',
long_description=open('README.rst').read(),
keywords="dynamics multibody simulation code generation",
license='UNLICENSE',
packages=find_packages(),
install_requires=['sympy>=0.7.4.1',
'numpy>=1.6.1',
],
extras_require={'doc': ['sphinx', 'numpydoc'],
'theano': ['Theano>=0.6.0'],
'cython': ['Cython>=0.15.1'],
'examples': ['scipy>=0.9', 'matplotlib>=0.99'],
},
tests_require=['nose>=1.3.0'],
test_suite='nose.collector',
scripts=['bin/benchmark_pydy_code_gen.py'],
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Physics',
],
)