forked from moorepants/DynamicistToolKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 1.06 KB
/
Copy pathsetup.py
File metadata and controls
28 lines (25 loc) · 1.06 KB
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
#!/usr/bin/env python
from setuptools import setup, find_packages
from dtk import __version__
setup(name='DynamicistToolKit',
author='Jason K. Moore',
author_email='moorepants@gmail.com',
version=__version__,
url="http://github.com/moorepants/DynamicistToolKit",
description='Various tools for theoretical and experimental dynamics.',
license='UNLICENSE.txt',
packages=find_packages(),
install_requires=['numpy>=1.6.0', 'scipy>=0.9.0', 'matplotlib>=1.1.0',
'pandas>=0.11.0'],
extras_require={'doc': ['sphinx>=1.1.0', 'numpydoc>=0.4']},
tests_require=['nose>1.3.0'],
test_suite='nose.collector',
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Physics',
],
)