-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
59 lines (50 loc) · 1.1 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "kolsol"
authors = [{name = "Daniel Kelshaw", email = "[email protected]"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: MIT License"]
# which version of python to require
requires-python = ">=3.8.10"
# version and description inferred from top-level __init__.py
dynamic = ["version", "description"]
dependencies = [
"numpy",
"einops",
"opt_einsum",
"torch",
"tqdm",
"h5py"
]
[project.urls]
Home = "https://github.com/magrilab/kolsol"
[project.optional-dependencies]
dev = [
"mypy",
"pylint",
"pytest"
]
[tool.mypy]
python_version = 3.8
warn_return_any = false
warn_unused_configs = true
ignore_missing_imports = true
[tool.pylint.master]
fail-under = 9.0
[tool.pylint.design]
max-line-length = 120
min-public-methods = 1
max-args = 10
[tool.pylint.typecheck]
ignored-modules = [
'torch'
]
[tool.pylint.message_control]
disable = [
'missing-module-docstring',
'missing-class-docstring',
'invalid-name'
]