-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
42 lines (37 loc) · 1.34 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
from setuptools import setup, find_packages
from distutils.util import convert_path
def readme():
with open("README.rst") as f:
return f.read()
meta = {}
with open(convert_path("sensormotion/version.py")) as f:
exec(f.read(), meta)
setup(
name="sensormotion",
version=meta["__version__"],
description="Python package for analyzing sensor-collected human motion "
"data (e.g. physical activity levels, gait dynamics)",
long_description=readme(),
url="https://github.com/sho-87/sensormotion",
project_urls={
"Documentation": "http://sensormotion.readthedocs.io",
"Source": "https://github.com/sho-87/sensormotion",
"Tracker": "https://github.com/sho-87/sensormotion/issues",
},
author="Simon Ho",
author_email="simonho.ubc@gmail.com",
license="MIT",
packages=find_packages(),
python_requires=">=3",
install_requires=["matplotlib", "numpy", "scipy"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
],
keywords="gait accelerometer signal-processing walking actigraph physical-activity",
zip_safe=True,
)