This repository has been archived by the owner on May 11, 2023. It is now read-only.
forked from python-openapi/openapi-schema-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
73 lines (64 loc) · 1.81 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
branch = true
source =["openapi_schema_validator"]
[tool.coverage.xml]
output = "reports/coverage.xml"
[tool.poetry]
name = "openapi-schema-validator"
version = "0.2.0"
description = "OpenAPI schema validation for Python"
authors = ["Artur Maciag <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.rst"
repository = "https://github.com/p1c2u/openapi-schema-validator"
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.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries"
]
[tool.poetry.dependencies]
python = "^3.6.2"
jsonschema = "^4.0.0"
rfc3339-validator = {version = "*", optional = true}
strict-rfc3339 = {version = "*", optional = true}
isodate = {version = "*", optional = true}
attrs = ">=19.2.0"
[tool.poetry.extras]
rfc3339-validator = ["rfc3339-validator"]
strict-rfc3339 = ["strict-rfc3339"]
isodate = ["isodate"]
[tool.poetry.dev-dependencies]
black = {version = "^21.6b0", allow-prereleases = true}
isort = "^5.9.1"
pre-commit = "*"
pytest = "^6"
pytest-flake8 = "*"
pytest-cov = "*"
mypy = "^0.910"
[tool.pytest.ini_options]
addopts = """
--capture=no
--verbose
--showlocals
--junitxml=reports/junit.xml
--cov=openapi_schema_validator
--cov-report=term-missing
--cov-report=xml
"""
[tool.black]
line-length = 79
[tool.isort]
profile = "black"
line_length = 79
force_single_line = true