-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
49 lines (41 loc) · 1.19 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
[tool.poetry]
name = "BAMT"
version = "1.2.72"
description = "data modeling and analysis tool based on Bayesian networks"
authors = ["Roman Netrogolov <[email protected]>",
"Irina Deeva <[email protected]>",
"Karine Shakhkyan <[email protected]>",
"Nikita Kovalev Yasen <[email protected]>",
"Anna Bubnova <[email protected]>",
"Yury Kaminsky <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.md"
repository = "https://github.com/ITMO-NSS-team/BAMT"
classifiers = ["Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering :: Mathematics"]
packages = [
{ include = "bamt" }
]
[tool.poetry.dependencies]
python = ">=3.9"
numpy = ">=1.26.4"
matplotlib = "^3.6.2"
pandas = ">=2.0.3"
gmr = "1.6.2"
scikit-learn = "^1.2.0"
scipy = "^1.8.0"
pyvis = ">=0.2.1"
missingno = "^0.5.1"
pgmpy = ">=0.1.25"
thegolem = ">=0.3.3"
xgboost = ">=1.7.6"
catboost = ">=1.0.6"
lightgbm = {version = ">=3.3.5", optional = true }
[tool.poetry.extras]
composite_extras = ["lightgbm"]
[tool.poetry.dev-dependencies]
pytest = "7.1.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"