This repository has been archived by the owner on May 11, 2023. It is now read-only.
forked from python-openapi/openapi-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
94 lines (85 loc) · 2.43 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
branch = true
source =["openapi_core"]
[tool.coverage.xml]
output = "reports/coverage.xml"
[tool.poetry]
name = "openapi-core"
version = "0.14.2"
description = "client-side and server-side support for the OpenAPI Specification v3"
authors = ["Artur Maciag <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.rst"
repository = "https://github.com/p1c2u/openapi-core"
documentation = "https://openapi-core.readthedocs.io"
keywords = ["openapi", "swagger", "schema"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries"
]
[tool.poetry.dependencies]
python = "^3.7.0"
pathable = "^0.4.0"
django = {version = ">=3.0", optional = true}
falcon = {version = ">=3.0", optional = true}
flask = {version = "*", optional = true}
isodate = "*"
more-itertools = "*"
parse = "*"
openapi-schema-validator = {version = "0.3.0a1", allow-prereleases = true}
openapi-spec-validator = {version = "0.5.0a1", allow-prereleases = true}
requests = {version = "*", optional = true}
werkzeug = "*"
[tool.poetry.extras]
django = ["django"]
falcon = ["falcon"]
flask = ["flask"]
requests = ["requests"]
[tool.poetry.dev-dependencies]
black = {version = "^21.6b0", allow-prereleases = true}
django = ">=3.0"
djangorestframework = "^3.11.2"
falcon = ">=3.0"
flask = "*"
isort = "^5.9.1"
pre-commit = "*"
pytest = "^6"
pytest-flake8 = "*"
pytest-cov = "*"
responses = "*"
sphinx = "^4.0.2"
sphinx-rtd-theme = "^0.5.2"
strict-rfc3339 = "^0.7"
webob = "*"
[tool.pytest.ini_options]
addopts = """
--capture=no
--verbose
--showlocals
--junitxml=reports/junit.xml
--cov=openapi_core
--cov-report=term-missing
--cov-report=xml
"""
filterwarnings = [
"ignore::DeprecationWarning:jsonschema.validators",
"ignore::DeprecationWarning:openapi_spec_validator.validators",
"ignore::DeprecationWarning:openapi_core.unmarshalling.schemas.unmarshallers",
]
[tool.black]
line-length = 79
[tool.isort]
profile = "black"
line_length = 79
force_single_line = true