forked from OxWearables/biobankAccelerometerAnalysis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (54 loc) · 1.92 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import setuptools
import codecs
import os.path
def read(rel_path):
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, rel_path), 'r') as fp:
return fp.read()
def get_string(string, rel_path="accelerometer/__init__.py"):
for line in read(rel_path).splitlines():
if line.startswith(string):
delim = '"' if '"' in line else "'"
return line.split(delim)[1]
else:
raise RuntimeError(f"Unable to find {string}.")
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="accelerometer",
python_requires=">=3.7",
version=get_string("__version__"),
author=get_string("__author__"),
author_email=get_string("__email__"),
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(),
include_package_data=True,
install_requires=[
'numpy',
'scipy',
'matplotlib',
'pandas>=1.2.5',
'tqdm>=4.59.0',
'statsmodels>=0.12.2',
'imbalanced-learn==0.8.1',
'scikit-learn==1.0.1',
'joblib==1.1.0',
'tqdm>=4.59.0',
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Unix",
],
entry_points={
"console_scripts": [
"accProcess=accelerometer.accProcess:main",
"accPlot=accelerometer.accPlot:main",
"accWriteCmds=accelerometer.accWriteCmds:main",
"accCollateSummary=accelerometer.accCollateSummary:main"
]
},
)