-
Notifications
You must be signed in to change notification settings - Fork 47
/
pyproject.toml
113 lines (98 loc) · 2.18 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
[tool.poetry]
name = "pyramid_openapi3"
version = "0.20.1"
description = "Pyramid addon for OpenAPI3 validation of requests and responses."
readme = "README.md"
authors = [
"Neyts Zupan",
"Domen Kozar"
]
license = "MIT"
repository = "https://github.com/Pylons/pyramid_openapi3"
keywords = ["pyramid", "openapi3", "openapi", "rest", "restful"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
]
packages = [
{ include = "pyramid_openapi3", from = "." },
]
exclude = ["pyramid_openapi3/tests/"]
[tool.poetry.dependencies]
python = "^3.10"
openapi-core = ">=0.19.1"
pyramid = ">=1.10.7"
[tool.poetry.dev-dependencies]
autoflake = "*"
black = "*"
codespell = "*"
coverage = "*"
docutils = "*"
flake8 = "*"
flake8-assertive = "*"
flake8-blind-except = "*"
flake8-bugbear = "*"
flake8-builtins = "*"
flake8-comprehensions = "*"
flake8-debugger = "*"
flake8-deprecated = "*"
flake8-docstrings = "*"
flake8-ensure-ascii = "*"
flake8-plone-hasattr = "*"
flake8-print = "*"
flake8-self = "*"
flake8-super-call = "*"
flake8-tuple = "*"
isort = "*"
mccabe = "*"
more-itertools = "*"
mypy = "*"
pdbpp = "*"
pre-commit = "*"
pre-commit-hooks = "*"
pytest = "*"
pytest-cov = "*"
pytest-instafail = "*"
pytest-randomly = "*"
pytest-socket = "*"
pyupgrade = "*"
typecov = "*"
types-pytest-lazy-fixture = "*"
webtest = "*"
yamllint = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.autoflake]
remove-all-unused-imports = true
in-place = true
recursive = true
[tool.isort]
atomic=true
force_alphabetical_sort=true
force_single_line=true
line_length=88
profile="black"
[tool.mypy]
follow_imports = "silent"
check_untyped_defs = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
linecount_report = "./typecov"
[[tool.mypy.overrides]]
ignore_missing_imports = true
module = [
"openapi_core.*",
"openapi_spec_validator.*",
"openapi_schema_validator.*",
"hupper.*",
"pyramid.*",
"pytest",
"webob.multidict.*",
"webtest.*",
"zope.interface.*",
]