|
[tool.poetry] |
|
name = "python-template" |
|
version = "0.1.0" |
|
description = "" |
|
authors = ["Your Name <[email protected]>"] |
|
|
|
[tool.poetry.dependencies] |
|
python = ">=3.10.0,<3.12" |
|
beautifulsoup4 = "^4.12.3" |
|
requests = "^2.32.3" |
|
matplotlib = "^3.9.2" |
|
numpy = "^2.1.1" |
|
optuna = "^4.0.0" |
|
pandas = "^2.2.2" |
|
scikit-learn = "^1.5.2" |
|
torch = "^2.4.1" |
|
pytorch-lightning = "^2.4.0" |
|
dask = "^2024.9.0" |
|
|
|
[tool.pyright] |
|
|
|
useLibraryCodeForTypes = true |
|
exclude = [".cache"] |
|
|
|
[tool.ruff] |
|
|
|
select = ['E', 'W', 'F', 'I', 'B', 'C4', 'ARG', 'SIM'] |
|
ignore = ['W291', 'W292', 'W293'] |
|
|
|
[build-system] |
|
requires = ["poetry-core>=1.0.0"] |
|
build-backend = "poetry.core.masonry.api" |