-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
42 lines (37 loc) · 988 Bytes
/
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
[project]
name = "mattertune"
version = "0.1.0"
description = ""
authors = [{ name = "Nima Shoghi", email = "nimashoghi@gmail.com" }]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"torch",
"ase",
"scikit-learn",
"lightning",
"numpy",
"torchmetrics",
"nshconfig[extra]",
"nshconfig-extra[extra]",
]
[project.optional-dependencies]
dev = ["pytest", "pre-commit", "ruff"]
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.pyright]
typeCheckingMode = "standard"
deprecateTypingAliases = true
strictListInference = true
strictDictionaryInference = true
strictSetInference = true
reportPrivateImportUsage = false
reportMatchNotExhaustive = "error"
reportImplicitOverride = "warning"
reportShadowedImports = "warning"
[tool.ruff.lint]
select = ["FA102", "FA100", "F401"]
ignore = ["F722", "F821", "E731", "E741"]
[tool.ruff.lint.isort]
required-imports = ["from __future__ import annotations"]