forked from highfem/tqdne
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (43 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
50 lines (43 loc) · 1.03 KB
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "tqdne"
authors= [{name = "HighFEM team", email = "example@mail.com"}]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.11"
dependencies = [
"pytorch-lightning>=2.1.3",
"scikit-image>=0.22.0",
"scikit-learn>=1.4.0",
"seaborn>=0.13.2",
"torch>=2.2.0",
"seisbench>=0.8.0",
"h5py>=3.10.0",
"diffusers>=0.26.3",
"pathos>=0.3.2",
"librosa>=0.10.2.post1",
"pandas>=2.2.2",
]
dynamic = ["version"]
[tool.setuptools]
packages = ["tqdne"]
[tool.setuptools.dynamic]
version = {attr = "tqdne.__init__.__version__"}
[tool.rye]
managed = true
dev-dependencies = [
"pip>=24.2",
"pre-commit>=3.8.0",
]
[tool.bandit]
skips = ["B101"]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F"]
extend-select = [
"UP", "I", "PL", "S"
]
ignore = ["S301", "PLR0913", "S101", "PLR2004", "S603", "S607", "PLW2901", "E721", "S307", "PLR0915", "E741"]