-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
40 lines (36 loc) · 1001 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
37
38
39
40
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = ["unquad/data/datasets/*.parquet.gz"]
[project]
name = "unquad"
version = "0.1.83"
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",
"scikit-learn>=1.6.1",
"pyod~=2.0.3",
"scipy>=1.13.0",
"tqdm>=4.66.2",
"pyarrow>=16.1.0",
]
[project.optional-dependencies]
dev = ["black"]
dl = ["tensorflow>=2.16.1", "torch>=2.2.2"]
all = ["black", "tensorflow>=2.16.1", "torch>=2.2.2"]
[project.urls]
"Homepage" = "https://github.com/OliverHennhoefer/unquad"
"Bugs" = "https://github.com/OliverHennhoefer/unquad/issues"