-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
104 lines (97 loc) · 2.73 KB
/
pyproject.toml
File metadata and controls
104 lines (97 loc) · 2.73 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[project]
name = "Scikit-longitudinal"
version = "0.1.8"
description = "Scikit-longitudinal is an open-source Python library for longitudinal data analysis, building on Scikit-learn's foundation with tools tailored for repeated measures data."
authors = [
{name = "Provost Simon", email = "[email protected]"},
{name = "Alex Freitas", email = "[email protected]"},
]
license = { text = "MIT" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
readme = "README.md"
requires-python = ">=3.10,<3.14"
dependencies = [
"scipy>=1.11.0,<2.0.0",
"pandas>=2.2.0,<3.0.0",
"matplotlib>=3.8.0,<4.0.0",
"jupyter<2.0.0,>=1.0.0",
"overrides<8.0.0,>=7.3.1",
"statsmodels<1.0.0,>=0.14.0",
"numpy>=1.26.4,<2.0.0",
"graphviz<1.0.0,>=0.20.1",
"liac-arff>=2.2.2",
"threadpoolctl<4.0.0,>=3.1.0",
"stopit>=1.1.2",
"rich>=13.6.0",
"joblib>=0.11",
"deep-forest-py310>=0.1.9",
"scikit-lexicographical-trees==0.0.4",
"pytest==9.0.1",
]
[dependency-groups]
parallelisation = [
"ray>=2.40.0",
]
dev = [
"pytest>=4.4.0",
"pytest-cov>=4.0.0",
"black>=23.10.1",
"isort>=5.12.0",
"black>=24.10.0",
"ruff>=0.9.1",
"pre-commit>=3.7.0",
"markdown-callouts>=0.4",
"markdown-exec>=1.8",
"mkdocs>=1.6.1",
"mkdocstrings[python]>=0.25",
"tomli>=2.0; python_version < '3.11'",
"mkdocstrings-python>=1.16.10",
"pymdown-extensions>=10.14.3",
"zensical>=0.0.28",
]
[project.urls]
Homepage = "https://github.com/simonprovost/scikit-longitudinal"
Documentation = "https://scikit-longitudinal.readthedocs.io/latest/"
Releases = "https://github.com/simonprovost/scikit-longitudinal/releases"
Repository = "https://github.com/simonprovost/scikit-longitudinal"
Issues = "https://github.com/simonprovost/scikit-longitudinal/issues/"
"Scientific Paper" = "https://joss.theoj.org/papers/10.21105/joss.08481"
[tool.uv]
default-groups = []
package = true
override-dependencies = [
"scikit-learn ; sys_platform == 'never'",
]
[tool.coverage.run]
branch = true
source = ["scikit_longitudinal/"]
omit = [
"scikit_longitudinal/**/tests/*",
"scikit-learn/*",
"sklearn_fork/*",
"./main.py",
".venv/*",
"*__init__.py",
]
data_file = ".coverage"
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"def __repr__",
]
ignore_errors = true
show_missing = true
[tool.isort]
profile = "black"
[tool.setuptools]
py-modules = []
license-files = []