-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
104 lines (93 loc) · 2.31 KB
/
Copy pathpyproject.toml
File metadata and controls
104 lines (93 loc) · 2.31 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[project]
name = "auto-bayesian"
version = "0.1.0"
description = "Config-driven, interpretable Bayesian network training for relational tabular data."
readme = "README.md"
requires-python = ">=3.12"
license = "Apache-2.0"
license-files = ["LICENSE", "NOTICE"]
authors = [
{ name = "Santander AI Lab" },
]
keywords = [
"bayesian-network",
"automl",
"interpretable-ml",
"explainable-ai",
"tabular-data",
"pgmpy",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed",
]
dependencies = [
"numpy>=2.2.0",
"pandas>=2.2.0",
"pgmpy>=1.0.0,<1.1.0",
"pyarrow>=18.0.0",
]
[project.optional-dependencies]
examples = [
"kagglehub>=0.3.0",
"jupyterlab>=4.0.0",
"ipykernel>=6.29.0",
"truststore>=0.10.0",
]
dev = [
"black>=24.0.0",
"iprogress>=0.4",
"ipykernel>=7.3.0",
"ipywidgets>=8.1.8",
"kagglehub>=1.0.2",
"mypy>=1.11.0",
"pytest>=8.3.0",
"pytest-cov>=5.0.0",
"ruff>=0.11.0",
]
[project.urls]
Homepage = "https://github.com/SantanderAI/auto-bayesian"
Repository = "https://github.com/SantanderAI/auto-bayesian"
Documentation = "https://github.com/SantanderAI/auto-bayesian/blob/main/DOCUMENTATION.md"
Issues = "https://github.com/SantanderAI/auto-bayesian/issues"
[project.scripts]
auto-bayesian = "auto_bayesian.cli:main"
[dependency-groups]
dev = [
"black>=24.0.0",
"iprogress>=0.4",
"ipykernel>=7.3.0",
"ipywidgets>=8.1.8",
"kagglehub>=1.0.2",
"mypy>=1.11.0",
"pytest>=8.3.0",
"pytest-cov>=5.0.0",
"ruff>=0.11.0",
]
[build-system]
requires = ["hatchling>=1.27.0"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/auto_bayesian"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["E501"]
[tool.black]
line-length = 100
target-version = ["py312"]
[tool.mypy]
python_version = "3.12"
ignore_missing_imports = true
warn_unused_ignores = false
no_implicit_optional = true