forked from pydy/pydy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
45 lines (40 loc) · 1.45 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
44
45
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
from pydy import __version__
# I was getting the same error as:
# https://github.com/statsmodels/statsmodels/issues/1073, so the following
# line is added.
os.environ["MPLCONFIGDIR"] = "."
setup(
name='pydy',
version=__version__,
author='PyDy Authors',
author_email='[email protected]',
url="http://pydy.org",
description='Python tool kit for multi-body dynamics.',
long_description=open('README.rst').read(),
keywords="multibody dynamics",
license='LICENSE.txt',
packages=find_packages(),
install_requires=['sympy>=0.7.4.1',
'numpy>=1.6.1',
'matplotlib>=0.99.0',
],
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 :: 4 - Beta',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Physics',
],
)