-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
116 lines (110 loc) · 2.93 KB
/
pyproject.toml
File metadata and controls
116 lines (110 loc) · 2.93 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
105
106
107
108
109
110
111
112
113
114
115
116
[project]
name = "frouros"
version = "0.10.0"
description = "An open-source Python library for drift detection in machine learning systems"
authors = [
{name = "Jaime Céspedes Sisniega", email = "cespedes@ifca.unican.es"}
]
maintainers = [
{name = "Jaime Céspedes Sisniega", email = "cespedes@ifca.unican.es"}
]
license = {text = "BSD-3-Clause"}
readme = "README.md"
keywords = [
"drift-detection",
"concept-drift",
"data-drift",
"machine-learning",
"data-science",
"machine-learning-operations",
"machine-learning-systems",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3 :: Only",
]
requires-python = ">=3.9"
dependencies = [
"matplotlib>=3.8.2,<3.10",
"numpy>=1.26.3,<2.3",
"requests>=2.31.0,<2.33",
"scipy>=1.12.0,<1.16",
"tqdm>=4.66.1,<5.0",
]
[project.optional-dependencies]
docs = [
"sphinx>=7.2.6,<8.2",
"sphinx-book-theme>=1.1.0,<1.2",
"sphinxcontrib-bibtex>=2.6.2,<2.7",
"myst-parser>=2.0.0,<4.1",
"myst-nb>=1.0.0,<1.4",
]
notebooks = [
"scikit-learn>=1.5.1,<1.7",
"torch>=2.1.2,<2.9",
"torchvision>=0.16.2,<0.24",
"ipywidgets>=8.1.1,<8.2",
]
dev-tests = [
"pytest>=8.3.1,<8.5",
"pytest-cov>=6.0.0,<7.1",
"pytest-mock>=3.14.0,<3.15",
"scikit-learn>=1.5.1,<1.7",
]
dev-ruff = [
"ruff>=0.8.1,<0.16",
]
dev-mypy = [
"mypy>=1.13.0,<1.14",
"types-requests>=2.32.0,<2.33",
"types-toml>=0.10.0,<0.11",
"types-tqdm>=4.66,<4.68",
]
dev = [
"frouros[docs,notebooks,dev-tests,dev-ruff,dev-mypy]",
"tox>=4.23.2,<4.31",
]
[project.urls]
homepage = "https://frouros.readthedocs.io"
repository = "https://github.com/IFCA-Advanced-Computing/frouros"
documentation = "https://frouros.readthedocs.io"
download = "https://pypi.org/project/frouros/"
[build-system]
requires = [
"setuptools>=61.0,<83.0",
"wheel>=0.42.0,<0.47",
"toml>=0.10.2,<0.11",
"build>=1.0.3,<1.5",
]
build-backend = "setuptools.build_meta"
[tool.ruff]
extend-include = ["*.ipynb"]
[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # Pyflakes
"B", # flake8-bugbear
"SIM", # flake8-simplify
"I", # isort
]
[tool.mypy]
disable_error_code = [
"misc",
"no-any-return",
]
ignore_missing_imports = true
strict = true