-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (59 loc) · 1.68 KB
/
pyproject.toml
File metadata and controls
64 lines (59 loc) · 1.68 KB
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
[build-system]
requires = ["uv_build >= 0.10.0, <0.11.0"]
build-backend = "uv_build"
[project]
name = "circStudio"
version = "1.1.1"
authors = [
{ name="Daniel Marques", email="daniel.marques@gimm.pt" },
{ name="Nuno Morais", email="nuno.morais@nms.unl.pt" },
{ name="Cátia Reis", email="catia.reis@medicina.ulisboa.pt" }
]
description = "A Python toolkit for smoothing, modeling, and analyzing actigraphy time series."
requires-python = ">=3.12"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Information Analysis",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
keywords = [
"actigraphy",
"actimetry",
"wearables",
"rhythm analysis",
"time-series",
"circadian",
"ultradian",
"chronobiology",
"sleep",
"cosinor",
"rest-activity",
"biological rhythms",
"functional modeling"
]
license = { file = "LICENSE.md" }
readme = "README.rst"
dependencies = [
'lmfit>=1.3.4,<2',
'pandas>=2.3.3,<3',
'numpy>=2.4.1,<3',
'scipy>=1.17.0,<2',
'statsmodels>=0.14.6,<1',
'plotly>=6.5.2,<7',
'seaborn>=0.13.2,<1',
'matplotlib>=3.10.8,<4',
'pyexcel>=0.7.4,<1',
'pyexcel-ods',
'pingouin'
]
[project.urls]
Homepage = "https://github.com/djmarques/circStudio"
Issues = "https://github.com/djmarques/circStudio/issues"
[tool.uv.build-backend]
source-include = ["src/circstudio/data/**"]