-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
74 lines (69 loc) · 1.89 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "forest-analysis"
version = "1.0.dev2"
description = "Forest is a library for analyzing smartphone-based high-throughput digital phenotyping data"
authors = [
{ name = "Onnela Lab", email = "[email protected]" }
]
maintainers = [
{ name = "Onnela Lab", email = "[email protected]" }
]
readme = "README.md"
license = { text = "BSD-3-Clause" }
requires-python = ">=3.11"
dependencies = [
"holidays",
"librosa",
"numpy",
"openrouteservice",
"pandas",
"pyproj",
"python-dateutil",
"pytz",
"ratelimit",
"requests",
"scipy",
"shapely",
"ssqueezepy",
"timezonefinder",
]
keywords = ["digital phenotyping", "smartphone", "statistics", "accelerometer", "GPS"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
]
[project.urls]
Documentation = "https://forest.beiwe.org"
Homepage = "https://github.com/onnela-lab/forest"
Issues = "https://github.com/onnela-lab/forest/issues"
Source = "https://github.com/onnela-lab/forest"
[project.optional-dependencies]
dev = [
"build",
"flake8",
"flake8-pytest-style",
"mypy",
"pytest",
"pytest-mock",
"twine",
"types-python-dateutil",
"types-pytz",
"types-requests",
"types-setuptools",
]
[tool.setuptools.packages.find]
include = ["forest*"]
[tool.setuptools.package-data]
"forest.poplar.raw" = ["noncode/*.csv", "noncode/*.json"]