sunga25 commited on
Commit
3a78ef9
1 Parent(s): 500c2c3

Create pyproject.toml

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