-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
132 lines (114 loc) · 2.76 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
[tool.poetry]
name = "SparkLightAutoML"
version = "0.4.1"
description = "Spark-based distribution version of fast and customizable framework for automatic ML model creation (AutoML)"
authors = [
"Alexander Ryzhkov <alexmryzhkov@gmail.com>",
"Anton Vakhrushev <btbpanda@gmail.com>",
"Dmitrii Simakov <dmitryevsimakov@gmail.com>",
"Rinchin Damdinov <damdinovr@gmail.com>",
"Alexander Kirilin <adkirilin@gmail.com>",
"Vasilii Bunakov <va.bunakov@gmail.com>",
"Nikolay Butakov alipoov.nb@gmail.com",
"Azamat Gainetdinov Mr.g.azamat@gmail.com",
"Sergey Teryoshkin se.teryoshkin@gmail.com",
"Denis Nasonov denis.nasonov@gmail.com"
]
readme = "README.md"
license = "Apache-2.0"
homepage = "https://lightautoml.readthedocs.io/en/latest/"
repository = "https://github.com/sb-ai-lab/SLAMA"
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Natural Language :: Russian",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed"
]
packages = [
{ include = "sparklightautoml" }
]
[tool.poetry.dependencies]
python = ">=3.8, <3.10"
poetry-core = "^1.0.0"
lightautoml = "0.3.8.1"
# PySpark
#pyspark = "3.3.1"
pyarrow = ">=1.0.0"
synapseml = "0.11.1"
toposort = "1.7"
onnxmltools = "^1.11.0"
weasyprint = {version = "52.5", optional = true}
hdfs = "^2.7.0"
numpy = "<1.24.0"
[tool.poetry.dev-dependencies]
pytest = "*"
sphinx = "*"
sphinx-rtd-theme = "*"
IPython = "*"
nbsphinx = "*"
nbsphinx-link = "*"
sphinx-autodoc-typehints = "*"
pandoc = "*"
pre-commit = "*"
notebook = "*"
mypy = "^0.910"
tox = "*"
hdfs = "^2.7.0"
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
force_single_line = true
atomic = true
include_trailing_comma = true
lines_after_imports = 2
lines_between_types = 1
use_parentheses = true
filter_files = true
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| tests/.*/setup.py
)/
'''
[tool.tox]
legacy_tox_ini = """
[tox]
isolated_build = True
envlist = py{38, 39}
[gh-actions]
python =
3.8: py38
3.9: py39
[gh-actions:env]
PLATFORM =
ubuntu-latest: linux
[testenv]
allowlist_externals = poetry
commands =
poetry install
poetry run pytest tests -v --ignore=tests/spark/unit/test_computations
"""