forked from csu-hmc/GaitAnalysisToolKit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (34 loc) · 1.38 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from gaitanalysis import __version__
description = "Various tools for gait analysis used at the Cleveland State University Human Motion and Control Lab."
setup(name='Gait-Analysis-Toolkit',
author='Jason K. Moore',
author_email='moorepants@gmail.com',
version=__version__,
url="http://github.com/csu-hmc/Gait-Analysis-Toolkit",
description=description,
license='UNLICENSE.txt',
packages=find_packages(),
install_requires=['numpy>=1.6.0',
'scipy>=0.9.0',
'matplotlib>=1.1.0',
'pandas>=0.12.0',
'pyyaml',
'DynamicistToolKit>=0.3.0'],
extras_require={'doc': ['sphinx>=1.1.0',
'numpydoc>=0.4'],
},
scripts=['bin/dflowdata'],
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',
],
)