forked from matt002/GaitPy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·25 lines (22 loc) · 1.17 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
import setuptools
def requirements():
with open('requirements.txt', "r") as fh:
return [x for x in fh.read().split('\n') if x]
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(name='gaitpy',
version='1.6.1',
description='Read and process raw vertical accelerometry data from a lumbar sensor during gait; calculate clinical gait characteristics.',
long_description=long_description,
long_description_content_type="text/markdown",
url='http://github.com/matt002/gaitpy',
packages=setuptools.find_packages(),
author='Matthew Czech',
author_email='[email protected]',
keywords=['gait', 'gaitpy', 'lumbar', 'waist', 'sensor', 'wearable', 'continuous wavelet', 'inverted pendulum', 'czech'],
classifiers=["Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License"],
license='MIT',
zip_safe=False,
install_requires=requirements(),
include_package_data=True)