-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
61 lines (56 loc) · 1.39 KB
/
pyproject.toml
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
51
52
53
54
55
56
57
58
59
60
61
[project]
name = "uibk.deep-preconditioning"
version = "0.1.0"
description = "Design preconditioners with a CNN to accelerate the conjugate gradient method."
readme = "README.md"
requires-python = ">=3.12"
license = { text = "MIT" }
authors = [
{ name = "Viktor Daropoulos", email = "Viktor.Daropoulos@student.uibk.ac.at" },
{ name = "Johannes Sappl", email = "johannes.sappl@student.uibk.ac.at" },
]
dependencies = [
"dvc>=3.50.2",
"dvclive>=3.46.0",
"dvc-webdav>=3.0.0",
"kaggle>=1.6.14",
"matplotlib>=3.9.2",
"pyamg>=5.2.1",
"scipy>=1.14.1",
"spconv-cu124>=2.3.8",
"torch>=2.3.0",
"numpy-stl>=3.2.0",
"triangle>=20250106",
"ilupp>=1.0.2",
]
[project.urls]
Repository = "https://github.com/jsappl/DeepPreconditioning"
[build-system]
requires = ["flit_core>=3.4"]
build-backend = "flit_core.buildapi"
[tool.ruff]
exclude = ["__init__.py"]
fix = true
line-length = 120
target-version = "py312"
[tool.ruff.lint]
select = [
"ARG", # flake8-unused-arguments
"B", # flake8-bugbear
"D", # pydocstyle
"E", # pycodestyle Error
"ERA", # eradicate
"F", # Pyflakes
"I", # isort
"N", # pep8-naming
"NPY", # NumPy-specific rules
"PD", # pandas-vet
"PT", # flake8-pytest-style
"PTH", # flake8-use-pathlib
"Q", # flake8-quotes
"RET", # flake8-return
"TD", # flake8-todos
"W", # pycodestyle Warning
]
[tool.ruff.lint.pydocstyle]
convention = "google"