-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpyproject.toml
51 lines (47 loc) · 1.26 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "bnlearn"
dynamic = ["version"]
authors = [{ name = "Erdogan Taskesen", email = "[email protected]" },]
description = "bnlearn is a Python package for Causal Discovery by learning the graphical structure of Bayesian networks, parameter learning, inference and sampling methods."
readme = "README.md"
requires-python = ">=3"
license = { file = "LICENSE" }
keywords = ["Python", ""]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pgmpy>=0.1.18",
"networkx>=2.7.1",
"matplotlib>=3.3.4",
"numpy>=1.24.1",
"pandas",
"tqdm",
"ismember",
"scikit-learn",
"funcsigs",
"statsmodels",
"python-louvain",
"packaging",
"df2onehot",
"fsspec",
"pypickle",
"tabulate",
"ipywidgets",
"datazets",
"setgraphviz",
"lingam",
]
[project.urls]
Homepage = "https://erdogant.github.io/bnlearn"
Download = "https://github.com/erdogant/bnlearn/archive/{version}.tar.gz"
[tool.setuptools]
packages = ["bnlearn"]
include-package-data = true
[tool.setuptools.dynamic]
version = { attr = "bnlearn.__version__" }