forked from lifelonglab/pyCLAD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (54 loc) · 1.75 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pyclad"
description = "Python Library for Continual Lifelong Anomaly Detection"
version = "0.1.0"
dependencies = [
"numpy>=2.0.0",
"scikit-learn>=1.5.0",
"seaborn>=0.13.2",
"pyod>=2.0.1"
]
requires-python = ">= 3.8"
authors = [
{ name = "Kamil Faber", email = "[email protected]" },
{ name = "Roberto Corizzo", email = "[email protected]" }
]
maintainers = [
{ name = "Kamil Faber", email = "[email protected]" },
{ name = "Roberto Corizzo", email = "[email protected]" }
]
readme = "README.md"
license = { text = "MIT License" }
keywords = ["continual anomaly detection", "continual learning", "anomaly detection", "lifelong learning"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
#[project.urls]
#Homepage = "https://example.com"
#Documentation = "https://readthedocs.org"
#Repository = "https://github.com/me/spam.git"
#Issues = "https://github.com/me/spam/issues"
#Changelog = "https://github.com/me/spam/blob/master/CHANGELOG.md"
[project.optional-dependencies]
dev = ["black>=24.4", "flake8>=7.1.0", "isort>=5.13.0", "pytest>=8.2.2"]
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
pythonpath = [
".", "src",
]