-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
32 lines (29 loc) · 1.07 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import pydy_viz
setup(
name='pydy-viz',
version=pydy_viz.__version__,
author='Tarun Gaba',
author_email='[email protected]',
url="https://github.com/pydy/pydy-viz/",
description='Browser based 3D visualization of multibody simulations.',
long_description=open('README.rst').read(),
keywords="dynamics multibody simulation visualization",
license='LICENSE.txt',
packages=find_packages(),
install_requires=['sympy>=0.7.2',
'numpy>=1.6.1',
'matplotlib>=0.99.0'],
extras_require={'doc': ['sphinx', 'numpydoc']},
tests_require=['nose'],
test_suite='nose.collector',
scripts=['bin/test'],
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',
],
)