-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
85 lines (71 loc) · 1.88 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
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
[tool.poetry]
name = "LightAutoML_gpu"
version = "0.2.15"
description = "Fast and customizable framework for automatic ML model creation (AutoML)"
authors = ["Alexander Ryzhkov <[email protected]>",
"Vakhrushev Anton <[email protected]>",
"Simakov Dmitrii <[email protected]>"]
readme = "README.md"
license = "Apache-2.0"
homepage = "https://lightautoml.readthedocs.io/en/latest/"
repository = "https://github.com/sberbank-ai-lab/LightAutoML"
classifiers = [
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Natural Language :: Russian",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed"
]
[tool.poetry.dependencies]
python = "^3.6.1"
poetry-core = "^1.0.0"
numpy = "*"
scipy = "*"
pandas = ">=1"
scikit-learn = ">=0.22"
lightgbm = "^2.3"
optuna = "*"
torch = ">=1.6"
holidays = "*"
networkx = "*"
cmaes = "*"
log-calls = "*"
pyyaml = "*"
autowoe = ">=1.2"
json2html = "*"
jinja2 = "*"
seaborn = "*"
transformers = ">=4"
nltk = "*"
gensim = "*"
tqdm = "*"
efficientnet-pytorch = "*"
albumentations = ">=0.4.6"
opencv-python = "*"
joblib = "*"
pywavelets = "*"
scikit-image = "*"
torchvision = "*"
webencodings = "*"
importlib-metadata = {version = "^1.0", python = "<3.8"}
weasyprint = {version = "^52.5", optional = true}
cffi = {version = "^1.14.5", optional = true}
[tool.poetry.dev-dependencies]
pytest = "*"
sphinx = "*"
sphinx-rtd-theme = "*"
IPython = "*"
nbsphinx = "*"
nbsphinx-link = "*"
sphinx-autodoc-typehints = "*"
pandoc = "*"
[tool.poetry.extras]
pdf = ["weasyprint", "cffi"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"