-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
58 lines (48 loc) · 1.16 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
[build-system]
requires = [
"setuptools>=61.0",
"wheel"
]
build-backend = "setuptools.build_meta"
# https://pypi.org/project/bhad
[project]
name = "bhad"
version = "0.2.6"
description = "Bayesian Histogram-based Anomaly Detection"
requires-python = ">=3.12"
readme = { file = "README.md", content-type = "text/markdown" }
authors = [
{ name = "Alexander Vosseler" }
]
maintainers = [
{ name = "Alexander Vosseler" }
]
keywords = ["bayesian-inference", "anomaly-detection", "unsupervised-learning", "explainability"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
# Note these updated constraints:
dependencies = [
"pandas>=1.5",
"scikit-learn>=1.3",
"matplotlib>=3.0",
"statsmodels>=0.14",
"tqdm>=4.0"
]
[project.optional-dependencies]
notebook = [
"jupyter",
"ipykernel",
"pytest"
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["bhad*"]
[project.urls]
homepage = "https://github.com/AVoss84/bhad"
repository = "https://github.com/AVoss84/bhad"
issues = "https://github.com/AVoss84/bhad/issues"