-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
83 lines (79 loc) · 2.32 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
75
76
77
78
79
80
81
82
83
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "deep_river"
version = "0.2.8"
description = "Online Deep Learning for river"
authors = ["Cedric Kulbach <cedric.kulbach@googlemail.com>",
"Lucas Cazzonelli <Cazzonelli@fzi.de>",
"Hoang-Anh Ngo <hoang-anh.ngo@alumni.polytechnique.org>",
"Max Halford <maxhalford25@gmail.com>",
"Saulo Martiello Mastelini <saulomastelini@gmail.com>",
]
license = "BSD-3-Clause"
readme = "README.md"
homepage = "https://github.com/online-ml/deep-river"
repository = "https://github.com/online-ml/deep-river"
documentation = "https://github.com/online-ml/deep-river"
keywords = ["online-learning", "deep-learning", "data-streams"]
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
scikit-learn = "~1.5.0"
torch = "~2.2.2"
pandas = "~2.2.2"
numpy = "~1.26.4"
river = "*"
tqdm = "~4.66.5"
ordered-set = "~4.1.0"
torchviz = "~0.0.2"
mkdocstrings = { version = ">=0.19.0", extras = ["python"] }
pytkdocs = { version = ">=0.5.0", extras = ["numpy-style"] }
[tool.poetry.dev-dependencies]
graphviz = ">=0.20.3"
matplotlib = ">=3.9.2"
mypy = ">=1.11.1"
codecov = ">=2.1.13"
pre-commit = ">=3.8.0"
pytest = ">=8.3.2"
pytest-cov = ">=5.0.0"
black = ">=24.8.0"
flake8 = ">=7.1.1"
isort = ">=5.13.2"
jupyter = ">=1.0.0"
pyupgrade = "==3.17.0"
flask = ">=3.0.2"
ipykernel = ">=6.9.0"
mike = ">=0.5.3"
mkdocs = ">=1.2.3"
mkdocs-awesome-pages-plugin = ">=2.7.0"
mkdocs-gen-files = ">=0.3.5"
mkdocs-charts-plugin = ">=0.0.8"
mkdocs-literate-nav = ">=0.4.1"
mkdocs-material = ">=8.1.11"
ipython_genutils = ">=0.1.0"
mkdocs-jupyter = ">=0.20.0"
nbconvert = ">=6.4.2"
jupyter_contrib_nbextensions = "0.7.0"
numpydoc = ">=1.2"
notebook = "==6.4.3"
spacy = ">=3.2.2"
jinja2 = ">=3.0.3"
dominate = "*"
jupyter-client = "*"
python-slugify = "*"
watermark = "==2.3.1"
[tool.mypy]
ignore_missing_imports = true
[tool.isort]
profile = "black"