-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
87 lines (75 loc) · 2.08 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[build-system]
requires = ["setuptools >= 42", "versioningit ~= 1.0", "wheel"]
build-backend = "setuptools.build_meta"
[tools.setuptools]
packages = ["atomate2.myaddon"]
[tools.setuptools.find]
where = ["src"]
[project]
name = "atomate2-myaddon"
description = "atomate2-myaddon is an example of a minimal atomate2 namespace add-on."
readme = "README.md"
license = { text = "modified BSD" }
authors = [{ name = "Matthew Evans", email = "[email protected]" }]
dynamic = ["version"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Topic :: Other/Nonlisted Topic",
"Topic :: Scientific/Engineering",
]
requires-python = ">=3.8"
dependencies =[
"atomate2",
"pymatgen"
]
[project.optional-dependencies]
dev = ["atomate2[dev]"]
docs = ["atomate2[docs]"]
tests = ["atomate2[tests]"]
strict = ["atomate2[strict]"]
[project.urls]
repository = "https://github.com/matgenix/atomate2-addon-template"
[tool.versioningit.vcs]
method = "git"
default-tag = "0.0.1"
[tool.isort]
profile = "black"
[tool.flake8]
max-line-length = 88
max-doc-length = 88
select = "C, E, F, W, B"
extend-ignore = "E203, W503, E501, F401, RST21"
min-python-version = "3.8.0"
docstring-convention = "numpy"
rst-roles = "class, func, ref, obj"
[tool.mypy]
ignore_missing_imports = true
no_strict_optional = true
[tool.coverage.run]
include = ["src/*"]
parallel = true
branch = true
[tool.coverage.paths]
source = ["src/"]
[tool.coverage.report]
skip_covered = true
show_missing = true
exclude_lines = [
'^\s*assert False(,|$)',
'if typing.TYPE_CHECKING:',
'^\s*@overload( |$)',
]
[tool.autoflake]
in-place = true
remove-all-unused-imports = true
remove-unused-variables = true
ignore-init-module-imports = true
expand-star-imports = true