-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
81 lines (67 loc) · 2.03 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
[tool.poetry]
name = "anomalearn"
version = "0.0.2"
description = "A modular and extensible end-to-end library for time series anomaly detection"
authors = ["Marco Petri <marco.petri@mail.polimi.it>"]
license = "European Union Public Licence 1.2 (EUPL 1.2)"
readme = "README.md"
homepage = "https://marcopetri98.github.io/anomalearn/index.html"
repository = "https://github.com/marcopetri98/anomalearn"
documentation = "https://marcopetri98.github.io/anomalearn/index.html"
keywords = ["time series", "anomaly detection", "machine learning", "development"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed"
]
packages = [
{ include = "anomalearn" }
]
[tool.poetry.dependencies]
python = ">=3.10"
matplotlib = ">=3.5.1"
numba = ">=0.56.4"
numpy = ">=1.21.5"
pandas = ">=1.4.1, <2.0.0"
scikit-learn = ">=1.0.2"
scikit-optimize = ">=0.9.0"
scipy = ">=1.7.3"
statsmodels = ">=0.13.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = ">=6.1.3"
pydata-sphinx-theme = ">=0.13.3"
sphinx-design = ">=0.4.1"
sphobjinv = ">=2.3.1"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pylint = ">=2.17.2"
pycodestyle = ">=2.10.0"
flake8 = ">=6.0.0"
isort = ">=5.12.0"
[tool.isort]
py_version = 310
extend_skip = ["__init__.py"]
skip_gitignore = true
multi_line_output = 0
atomic = true
from_first = true
lines_after_imports = 2
lines_between_sections = 1
lexicographical = false
no_lines_before = ["future", "stdlib"]
ignore_comments = true
src_paths = ["anomalearn", "tests"]
line_length = 79
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"