forked from OxWearables/biobankAccelerometerAnalysis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 1.04 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="accelerometer",
version="2.0",
author="Aiden Doherty",
author_email="aiden.doherty@bdi.ox.ac.uk",
description="A package to extract meaningful health information from large accelerometer datasets e.g. how much time individuals spend in sleep, sedentary behaviour, walking and moderate intensity physical activity",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/activityMonitoring/biobankAccelerometerAnalysis",
packages=setuptools.find_packages(),
install_requires=[
'argparse',
'joblib',
'matplotlib',
'numpy',
'scipy',
'pandas>=0.24',
'scikit-learn==0.21.2',
'sphinx',
'sphinx-rtd-theme',
'statsmodels',
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Unix",
],
)