-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (60 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
71 lines (60 loc) · 1.63 KB
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
[project]
name = "openapi3-parser"
version = "1.1.22"
description = "OpenAPI v3 parser"
readme = "readme.md"
license = { file = "license.txt" }
authors = [{ name = "Artem Manchenkov", email = "artem@manchenkoff.me" }]
keywords = [
"swagger",
"python",
"swagger-parser",
"openapi3-parser",
"parser",
"openapi3",
"swagger-api",
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries",
]
requires-python = ">=3.9"
dependencies = ["openapi-spec-validator>=0.7.2", "prance>=23.6.21.0"]
[project.urls]
homepage = "https://github.com/manchenkoff/openapi3-parser"
source = "https://github.com/manchenkoff/openapi3-parser"
[dependency-groups]
dev = ["mypy>=1.18.2", "pytest>=8.4.2"]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true
[tool.mypy]
python_version = 3.9
check_untyped_defs = true
follow_imports = "silent"
no_implicit_reexport = true
no_implicit_optional = true
strict_optional = true
strict_equality = true
ignore_missing_imports = true
ignore_errors = false
disallow_any_generics = false
disallow_untyped_defs = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_unused_configs = true
warn_unreachable = true
warn_no_return = true