-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
100 lines (88 loc) · 2.78 KB
/
pyproject.toml
File metadata and controls
100 lines (88 loc) · 2.78 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
[tool.poetry]
name = "HypEx"
version = "1.0.3"
description = "Fast and customizable framework for Causal Inference"
authors = [
"Dmitry Tikhomirov <dimasta00@gmail.com>",
"Dmitry Bulychev <dmatryus.sqrt49@yandex.ru>",
"Ivan Yurashku <yurashku@gmail.com>",
"Anton Katkov <akatkov89@gmail.com>",
"Ruslan Alsherov <ruslan-alsherov@yandex.ru>",
"Ksenia Vasilieva <vasilievaxeniaa@gmail.com>",
"Anastasiia Fedorova <fedorovanasty24@gmail.com>",
"Daria Vigovskaya <dasha.vig@yandex.ru>"
]
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/sb-ai-lab/HypEx"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
"Typing :: Typed",
]
[tool.poetry.dependencies]
python = ">=3.8, <3.14"
tqdm = "*"
scikit-learn = "*"
pandas = [
{ version = ">=1.3.5, <=2.0.3", python = "<3.9" },
{ version = ">=1.3.5, <=2.2.3", python = ">=3.9" }
]
numpy = [
{ version = ">=1.17.0, <=1.24.4", python = "<3.9" },
{ version = ">=1.17.0, <=1.26.4", python = ">=3.9" }
]
scipy = [
{ version = ">=1.5.0, <=1.10.1", python = "<3.9" },
{ version = ">=1.5.0, <=1.13.1", python = ">=3.9, <3.13" },
{ version = ">=1.14.1, <=1.16.0", python = ">=3.13" }
]
matplotlib = [
{ version = ">=3.0.0, <=3.7.3", python = "<3.9" },
{ version = ">=3.0.0, <=3.9.0", python = ">=3.9, <3.13" },
{ version = ">=3.10.0, <=3.11.0", python = ">=3.13" }
]
faiss-cpu = [
{ version = ">=1.6.0, <=1.8.0", python = "<3.9" },
{ version = ">=1.9.0,<=1.14.0", python = ">=3.9" }
]
seaborn = "<=0.13.2"
statsmodels = "<=0.14.2"
[tool.poetry.extras]
cat = ["catboost"]
lgbm = ["lightgbm"]
all = ["catboost", "lightgbm"]
[tool.poetry.group.dev.dependencies]
docutils = ">=0.17,<0.21"
jupyter = "^1.0.0"
pytest = "^7.4.3"
sphinx = { version = "^7.2.6", python = ">=3.9, <3.11" }
nbsphinx = "*"
nbsphinx_link = "*"
sphinx_autodoc-typehints = "*"
sphinx_rtd_theme = "^1.2.2"
ruff = "*"
alive-progress = "^3.1.0"
psutil = "^7.0.0"
jsonschema = "^4.23.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 88
target-version = "py38"
[tool.ruff.lint]
select = ["E", "F", "W", "C90", "UP", "RUF", "I"]
ignore = ["E501", "RUF003", "C901"]