forked from p1c2u/jsonschema-path
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
81 lines (70 loc) · 1.83 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
branch = true
source =["jsonschema_spec"]
[tool.coverage.xml]
output = "reports/coverage.xml"
[tool.mypy]
files = "jsonschema_spec"
strict = true
[[tool.mypy.overrides]]
module = "jsonschema.validators"
ignore_missing_imports = true
[tool.poetry]
name = "jsonschema-spec"
version = "0.1.2"
description = "JSONSchema Spec with object-oriented paths"
authors = ["Artur Maciag <[email protected]>"]
license = "Apache License, Version 2.0"
readme = "README.rst"
repository = "https://github.com/p1c2u/jsonschema-spec"
keywords = ["jsonschema", "swagger", "spec"]
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]
jsonschema = "^4.0.0"
pathable = "^0.4.1"
python = "^3.7.0"
PyYAML = ">=5.1"
typing-extensions = "^4.3.0"
[tool.poetry.extras]
dev = ["pre-commit"]
[tool.poetry.dev-dependencies]
pre-commit = {version = "*", optional = true}
pytest = "^6.2.5"
pytest-flake8 = "=1.0.7"
pytest-cov = "^3.0.0"
isort = "^5.0.0"
black = "^22.0.0"
flynt = "0.76"
mypy = "^0.971"
types-PyYAML = "^6.0.11"
types-requests = "^2.28.9"
[tool.pytest.ini_options]
addopts = """
--capture=no
--verbose
--showlocals
--junitxml=reports/junit.xml
--cov=jsonschema_spec
--cov-report=term-missing
--cov-report=xml
"""
[tool.black]
line-length = 79
[tool.isort]
profile = "black"
line_length = 79
force_single_line = true