forked from AntimoMarrazzo/aiida-z2pack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
193 lines (169 loc) · 4.28 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
[build-system]
requires = ['flit_core >=3.4,<4']
build-backend = 'flit_core.buildapi'
[project]
name = 'aiida-z2pack'
dynamic = ['version']
description = 'The official AiiDA plugin for z2pack'
authors = [{name = 'Antimo Marrazzo', email = '[email protected]'},
{name = 'Davide Grassano', email = '[email protected]'}
]
readme = 'README.md'
license = {file = 'LICENSE.txt'}
classifiers = [
'Development Status :: 5 - Production/Stable',
'Framework :: AiiDA',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
keywords = ['aiida', 'workflows']
requires-python = '>=3.8'
dependencies = [
'numpy',
'z2pack==2.1.1',
'aiida-core~=2.1.2',
'aiida_quantumespresso~=4.0',
'aiida_wannier90~=3.0.0'
]
[project.urls]
Home = 'https://github.com/AntimoMarrazzo/aiida-z2pack'
Source = 'https://github.com/AntimoMarrazzo/aiida-z2pack'
Documentation = ''
[project.optional-dependencies]
chern = [
'scipy',
'scikit-learn~=0.22'
]
docs = [
'sphinx~=4.1',
'sphinx-copybutton~=0.5.0',
'sphinx-book-theme~=0.3.2',
'sphinx-click~=4.0',
'sphinx-design~=0.0.13',
'sphinxcontrib-details-directive~=0.1.0',
'sphinx-autoapi',
]
pre-commit = [
'pre-commit~=2.17',
'pylint~=2.12.2',
'pylint-aiida~=0.1.1',
'toml',
]
tests = [
'pgtest~=1.3',
'pytest~=6.0',
'pytest-regressions~=2.3'
]
# [project.scripts]
# aiida-quantumespresso = 'aiida_quantumespresso.cli:cmd_root'
[project.entry-points.'aiida.calculations']
'z2pack.z2pack' = 'aiida_z2pack.calculations.z2pack:Z2packCalculation'
[project.entry-points.'aiida.parsers']
'z2pack.z2pack' = 'aiida_z2pack.parsers.z2pack:Z2packParser'
[project.entry-points.'aiida.workflows']
'z2pack.base' = 'aiida_z2pack.workchains.base:Z2packBaseWorkChain'
'z2pack.qsh' = 'aiida_z2pack.workchains.parity:Z2QSHworkchain'
'z2pack.3DChern' = 'aiida_z2pack.workchains.chern:Z2pack3DChernWorkChain'
'z2pack.refine' = 'aiida_z2pack.workchains.refine:RefineCrossingsPosition'
[tool.flit.module]
name = 'aiida_z2pack'
[tool.flit.sdist]
exclude = [
'docs/',
'tests/',
]
[tool.flynt]
line-length = 120
fail-on-change = true
[tool.isort]
force_sort_within_sections = true
include_trailing_comma = true
line_length = 120
multi_line_output = 3 # this configuration is compatible with yapf
[tool.pydocstyle]
ignore = [
'D104',
'D202',
'D203',
'D213'
]
[tool.pylint.master]
load-plugins = ['pylint_aiida']
[tool.pylint.format]
max-line-length = 120
[tool.pylint.tool-check]
generated-members = 'self.exit_codes.*'
[tool.pylint.messages_control]
disable = [
'bad-continuation',
'duplicate-code',
'locally-disabled',
'logging-format-interpolation',
'inconsistent-return-statements',
'import-outside-toplevel',
'no-else-raise',
'too-many-arguments',
'too-many-ancestors',
'too-many-branches',
'too-many-locals',
]
[tool.pylint.basic]
good-names = [
'i',
'j',
'k',
'SsspFamily',
'StructureData',
'UpfData',
'HpCalculation',
'PwCalculation',
]
[tool.pytest.ini_options]
minversion = '6.0'
testpaths = [
'tests',
]
filterwarnings = [
'ignore:Creating AiiDA configuration folder.*:UserWarning',
'ignore::DeprecationWarning:frozendict:',
'ignore::DeprecationWarning:pkg_resources:',
'ignore::DeprecationWarning:sqlalchemy_utils:',
]
[tool.yapf]
align_closing_bracket_with_visual_indent = true
based_on_style = 'google'
coalesce_brackets = true
column_limit = 120
dedent_closing_brackets = true
indent_dictionary_value = false
split_arguments_when_comma_terminated = true
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py37
[testenv]
usedevelop=True
[testenv:py{36,37,38,39}]
extras = tests
commands = pytest {posargs}
[testenv:py38-pre-commit]
description = Run the pre-commit checks
extras =
tests
pre-commit
commands = pre-commit run {posargs}
[testenv:py38-docs-{clean,update}]
description =
clean: Build the documentation (remove any existing build)
update: Build the documentation (modify any existing build)
extras = docs
changedir = docs
whitelist_externals = make
commands =
clean: make clean
make
"""