-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
189 lines (169 loc) · 4.16 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
[build-system]
requires = ['flit_core >=3.4,<4']
build-backend = 'flit_core.buildapi'
[project]
name = 'plumpy'
dynamic = ['version']
description = 'A Python workflow library.'
authors = [
{name = 'Martin Uhrin', email = '[email protected]'},
{name = 'Sebastiaan Huber'},
{name = 'Jason Yu'},
{name = 'Leopold Talirz'},
{name = 'Dominik Gresch'},
]
readme = 'README.md'
license = {file = 'LICENSE.txt'}
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
keywords = ['workflow', 'multithreaded', 'rabbitmq']
requires-python = '>=3.8'
dependencies = [
'kiwipy[rmq]~=0.8.3',
'nest_asyncio~=1.5,>=1.5.1',
'pyyaml~=6.0',
]
[project.urls]
Home = 'https://github.com/aiidateam/plumpy'
Source = 'https://github.com/aiidateam/plumpy'
Documentation = 'https://plumpy.readthedocs.io'
[project.optional-dependencies]
docs = [
'ipython~=7.0',
'jinja2==2.11.3',
'kiwipy[docs]~=0.8.3',
'markupsafe==2.0.1',
'myst-nb~=0.11.0',
'sphinx~=3.2.0',
'sphinx-book-theme~=0.0.39',
'importlib-metadata~=4.12.0',
]
pre-commit = [
'mypy==1.3.0',
'pre-commit~=2.2',
'pylint==2.15.8',
'types-pyyaml'
]
tests = [
'ipykernel==6.12.1',
'pytest==6.2.5',
'pytest-asyncio==0.16.0',
'pytest-cov==3.0.0',
'pytest-notebook>=0.8.0',
'shortuuid==1.0.8',
'importlib-resources~=5.2',
]
[tool.flit.module]
name = 'plumpy'
[tool.flit.sdist]
exclude = [
'docs/',
'examples/',
'test/',
]
[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
[tool.mypy]
show_error_codes = true
strict = true
# reduce stricness, eventually these should be removed
disallow_any_generics = false
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
warn_unused_ignores = true
warn_redundant_casts = true
warn_return_any = false
[[tool.mypy.overrides]]
module = 'test.*'
check_untyped_defs = false
[[tool.mypy.overrides]]
module = [
'aio_pika.*',
'aiocontextvars.*',
'frozendict.*',
'kiwipy.*',
'nest_asyncio.*',
'tblib.*',
]
ignore_missing_imports = true
[tool.pylint.format]
max-line-length = 120
[tool.pylint.messages_control]
disable = [
'duplicate-code',
'global-statement',
'import-outside-toplevel',
'inconsistent-return-statements',
'locally-disabled',
'missing-docstring',
'protected-access',
'raise-missing-from',
'too-few-public-methods',
'too-many-ancestors',
'too-many-arguments',
'too-many-instance-attributes',
]
[tool.pytest.ini_options]
minversion = '6.0'
testpaths = [
'test',
]
filterwarnings = []
[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{37,38,39,310}]
description = Run the unit tests
extras =
tests
commands = pytest {posargs}
[testenv:py{37,38,39,310}-pre-commit]
description = Run the style checks and formatting
extras =
pre-commit
tests
commands = pre-commit run {posargs}
[testenv:docs-{update,clean}]
description = Build the documentation
extras = docs
whitelist_externals = rm
commands =
clean: rm -rf docs/_build
sphinx-build -nW --keep-going -b {posargs:html} docs/source/ docs/_build/{posargs:html}
[testenv:docs-live]
description = Build the documentation and launch browser (with live updates)
extras = docs
deps = sphinx-autobuild
commands =
sphinx-autobuild \
--re-ignore _build/.* \
--port 0 --open-browser \
-n -b {posargs:html} docs/source/ docs/_build/{posargs:html}
"""