-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
83 lines (76 loc) · 2.52 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import sys
import os.path
# https://github.com/python-versioneer/python-versioneer/issues/193
sys.path.insert(0, os.path.dirname(__file__))
import setuptools
import codecs
import versioneer
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="src/actipy/__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="actipy",
python_requires=">=3.8",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Python package to process wearable accelerometer data",
keywords="wearable accelerometer data processing",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/OxWearables/actipy",
download_url="https://github.com/OxWearables/actipy",
author=get_string("__author__"),
maintainer=get_string("__maintainer__"),
maintainer_email=get_string("__maintainer_email__"),
license=get_string("__license__"),
classifiers=[
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
],
packages=setuptools.find_packages(where="src", exclude=("test", "tests")),
package_dir={"": "src"},
include_package_data=True,
install_requires=[
"numpy>=1.22",
"scipy>=1.7",
"pandas>=1.3",
"statsmodels>=0.13",
# "tqdm==4.64.*",
],
extras_require={
"dev": [
"flake8",
"autopep8",
"ipython",
"ipdb",
"twine",
"tomli",
"pytest",
"joblib"
] + (["memray"] if not sys.platform.startswith("win") else []), # memray not supported on Windows
"docs": [
"sphinx>=4.2",
"sphinx_rtd_theme>=1.0",
"readthedocs-sphinx-search>=0.1",
"docutils<0.18",
],
},
entry_points={
"console_scripts": [
"read_cwa=actipy.read_cwa:main",
]
}
)