-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
36 lines (33 loc) · 941 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "unquad"
version = "0.1.5"
description = "Conformal Anomaly Detection"
authors = [
{ name = "Oliver Hennhoefer", email = "[email protected]" },
]
license = { file = "LICENSE" }
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
requires-python = ">=3.12"
dependencies = [
"numpy >=1.26.0",
"pandas >=2.2.1",
"pyod ~=2.0.3",
"scipy >=1.13.0",
"tqdm >=4.66.2",
]
[project.optional-dependencies]
dev = ["black"]
dl = ["tensorflow >=2.16.1", "torch >=2.2.2"]
data = ["pyarrow >= 16.1.0"]
all = ["black", "tensorflow >=2.16.1", "torch >=2.2.2", "pyarrow >= 16.1.0"]
[project.urls]
"Homepage" = "https://github.com/OliverHennhoefer/unquad"
"Bugs" = "https://github.com/OliverHennhoefer/unquad/issues"