forked from isayevlab/AIMNet2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
59 lines (47 loc) · 1.31 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
[build-system]
requires = ["setuptools>=61.0", "wheel", "versioneer"]
build-backend = "setuptools.build_meta"
[project]
name = "pyaimnet2"
description = "AIMNet2: a general-purpose neural network potential for organic and element-organic molecules."
authors = [ {name = "Dylan Anstine ,Roman Zubatyuk ,Olexandr Isayev"} ]
license = { text = "MIT" }
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.10"
classifiers = ["Programming Language :: Python :: 3"]
[tool.setuptools]
zip-safe = false
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "pyaimnet2.__version__"}
[tool.setuptools.packages.find]
namespaces = true
where = ["."]
[tool.setuptools.package-data]
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "pyaimnet2/_version.py"
versionfile_build = "pyaimnet2/_version.py"
tag_prefix = ""
parentdir_prefix = "pyaimnet2-"
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
[tool.flake8]
max-line-length = 88
ignore = ["E203", "E266", "E501", "W503"]
select = ["B","C","E","F","W","T4","B9"]
[tool.coverage.run]
omit = ["**/tests/*", "**/_version.py"]
[tool.coverage.report]
exclude_lines = [
"@overload",
"pragma: no cover",
"raise NotImplementedError",
"if __name__ = .__main__.:",
"if TYPE_CHECKING:",
"if typing.TYPE_CHECKING:",
]