Create pyproject.toml
Browse files- pyproject.toml +32 -0
pyproject.toml
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[tool.poetry]
|
2 |
+
name = "python-template"
|
3 |
+
version = "0.1.0"
|
4 |
+
description = ""
|
5 |
+
authors = ["Your Name <[email protected]>"]
|
6 |
+
|
7 |
+
[tool.poetry.dependencies]
|
8 |
+
python = ">=3.10.0,<3.12"
|
9 |
+
beautifulsoup4 = "^4.12.3"
|
10 |
+
requests = "^2.32.3"
|
11 |
+
matplotlib = "^3.9.2"
|
12 |
+
numpy = "^2.1.1"
|
13 |
+
optuna = "^4.0.0"
|
14 |
+
pandas = "^2.2.2"
|
15 |
+
scikit-learn = "^1.5.2"
|
16 |
+
torch = "^2.4.1"
|
17 |
+
pytorch-lightning = "^2.4.0"
|
18 |
+
dask = "^2024.9.0"
|
19 |
+
|
20 |
+
[tool.pyright]
|
21 |
+
# https://github.com/microsoft/pyright/blob/main/docs/configuration.md
|
22 |
+
useLibraryCodeForTypes = true
|
23 |
+
exclude = [".cache"]
|
24 |
+
|
25 |
+
[tool.ruff]
|
26 |
+
# https://beta.ruff.rs/docs/configuration/
|
27 |
+
select = ['E', 'W', 'F', 'I', 'B', 'C4', 'ARG', 'SIM']
|
28 |
+
ignore = ['W291', 'W292', 'W293']
|
29 |
+
|
30 |
+
[build-system]
|
31 |
+
requires = ["poetry-core>=1.0.0"]
|
32 |
+
build-backend = "poetry.core.masonry.api"
|