File size: 797 Bytes
1be89f3 |
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 |
[project]
name = "yambda"
version = "0.1.0"
description = ""
authors = [
{name = "Yandex"}
]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"torch",
"polars-u64-idx==1.28.1", # https://github.com/pola-rs/polars/issues/22741
"click",
"scipy",
"numpy",
"optuna",
"tqdm",
"matplotlib"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
# list of all codes - https://docs.astral.sh/ruff/rules/
select = [
"E", # pycodestyle errors
"F", # pyflakes
"W", # pycodestyle warnings
"I", # isort
]
[tool.ruff.lint.isort]
lines-after-imports = 2
known-first-party = ["yambda"]
[tool.ruff.format]
quote-style = "preserve"
|