-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
49 lines (43 loc) · 1.2 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
[project]
name = "apispec-flask-restful"
version = "0.3.1"
description = "Flask-RESTful plugin for apispec."
authors = [
{name="theirix", email="[email protected]"}
]
license = {file = "LICENSE.txt"}
readme = "README.rst"
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"Programming Language :: Python",
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License'
]
keywords = ["apispec", "swagger", "openapi", "specification", "documentation", "spec", "rest api"]
requires-python = ">=3.8"
dependencies = [
"apispec[yaml] >= 1.0",
"Flask-RESTful"
]
[project.urls]
Homepage = "https://github.com/theirix/apispec-flask-restful"
Repository = "https://github.com/theirix/apispec-flask-restful"
[dependency-groups]
dev = [
"pytest>=8.3.4",
"pylint>=2.6.0",
"pytest-cov>=4",
]
[tool.pytest.ini_options]
pythonpath = ["."]
addopts = [
"--import-mode=importlib",
]
[tool.isort]
profile = "black"
[tool.pylint.messages_control]
disable = [
"missing-module-docstring", "missing-function-docstring", "missing-class-docstring",
"too-few-public-methods", "protected-access", "consider-using-f-string", "logging-format-interpolation"
]