-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
112 lines (100 loc) · 2.52 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
[build-system]
requires = ['flit_core >=3.4,<4']
build-backend = 'flit_core.buildapi'
[project]
name = 'aiida-raspa'
dynamic = ['version']
description = 'AiiDA plugin for RASPA code'
authors = [
{ name = 'Aliaksandr Yakutovich', email = '[email protected]' },
{ name = 'Miriam Pougin', email = '[email protected]' },
]
readme = 'README.md'
license = {file = 'LICENSE'}
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 = [
'aiida_core[atomic_tools]~=2.3',
'importlib_resources'
]
[project.urls]
Home = 'https://github.com/yakutovicha/aiida-raspa'
Source = 'https://github.com/yakutovicha/aiida-raspa'
[project.optional-dependencies]
tests = [
'pgtest~=1.3',
'pytest~=6.0'
]
pre-commit = [
'pre-commit~=3.3',
'black~=23.7',
'isort~=5.12',
'pylint~=2.17',
]
docs = [
'sphinx',
'sphinx-rtd-theme',
'sphinxcontrib-contentui',
'sphinxcontrib-details-directive',
]
[project.entry-points.'aiida.calculations']
'raspa' = 'aiida_raspa.calculations:RaspaCalculation'
[project.entry-points.'aiida.parsers']
'raspa' = 'aiida_raspa.parsers:RaspaParser'
[project.entry-points.'aiida.workflows']
'raspa.base' = 'aiida_raspa.workchains:RaspaBaseWorkChain'
[tool.black]
line-length = 120
target-version = ['py310']
include = '\.pyi?$'
[tool.pylint.format]
max-line-length = 120
[tool.pylint.messages_control]
disable = [
'too-many-ancestors',
'too-many-function-args',
'duplicate-code',
'import-outside-toplevel',
'inconsistent-return-statements',
]
module-naming-style='any'
[tool.pytest.ini_options]
testpaths = [
"tests",
]
python_functions = "test_*"
python_files = "test_*.py"
filterwarnings = [
'ignore::DeprecationWarning:aiida:',
'ignore::DeprecationWarning:plumpy:',
'ignore::DeprecationWarning:django:',
'ignore::DeprecationWarning:frozendict:',
'ignore::DeprecationWarning:sqlalchemy:',
'ignore::DeprecationWarning:yaml:',
'ignore::DeprecationWarning:pymatgen:',
]
[tool.pylint.basic]
good-names = [
'_',
'x',
'y',
'z',
'i',
'j',
'k',
'pk',
]
no-docstring-rgx = '^_,setUp,tearDown'
docstring-min-length = 5
[tool.isort]
profile = "black"