-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
58bf737
commit 4ffc7b1
Showing
11 changed files
with
87 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ __pycache__ | |
*.tar.gz | ||
_test_files/ | ||
dist/ | ||
venv312/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
__version__ = "1.0.8" | ||
__version__ = "1.0.9" | ||
VERSION = __version__ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ dynamic = ["version"] | |
authors = [{ name = "Roberto Prevato", email = "[email protected]" }] | ||
description = "Classes to generate OpenAPI Documentation v3 and v2, in JSON and YAML." | ||
readme = "README.md" | ||
requires-python = ">=3.7" | ||
requires-python = ">=3.8" | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"License :: OSI Approved :: MIT License", | ||
|
@@ -17,17 +17,29 @@ classifiers = [ | |
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Operating System :: OS Independent", | ||
] | ||
keywords = ["openapi", "docs", "swagger", "api", "documentation", "v3", "v2", "json", "yaml", "Markdown"] | ||
keywords = [ | ||
"openapi", | ||
"docs", | ||
"swagger", | ||
"api", | ||
"documentation", | ||
"v3", | ||
"v2", | ||
"json", | ||
"yaml", | ||
"Markdown", | ||
] | ||
|
||
dependencies = ["PyYAML>=6", "essentials>=1.1.5"] | ||
dependencies = ["PyYAML>=6", "essentials>=1.1.5", "MarkupSafe~=2.1.2"] | ||
|
||
[tool.hatch.version] | ||
path = "openapidocs/__init__.py" | ||
|
||
[project.optional-dependencies] | ||
full = ["click~=8.1.3", "Jinja2~=3.1.2", "MarkupSafe==2.1.2", "rich~=12.6.0", "httpx<1"] | ||
full = ["click~=8.1.3", "Jinja2~=3.1.2", "rich~=12.6.0", "httpx<1"] | ||
|
||
[project.scripts] | ||
openapidocs = "openapidocs.main:main" | ||
|
@@ -42,12 +54,12 @@ exclude = ["tests"] | |
[tool.hatch.build] | ||
only-packages = false | ||
include = [ | ||
"LICENSE", | ||
"README.md", | ||
"CHANGELOG.md", | ||
"openapidocs/**/*.py", | ||
"openapidocs/**/*.html", | ||
"openapidocs/**/*.md", | ||
"LICENSE", | ||
"README.md", | ||
"CHANGELOG.md", | ||
"openapidocs/**/*.py", | ||
"openapidocs/**/*.html", | ||
"openapidocs/**/*.md", | ||
] | ||
|
||
[project.urls] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,39 @@ | ||
anyio==3.6.2 | ||
attrs==22.1.0 | ||
black==22.10.0 | ||
build==0.10.0 | ||
certifi==2022.9.24 | ||
charset-normalizer==3.0.0 | ||
click==8.1.3 | ||
commonmark==0.9.1 | ||
coverage==6.5.0 | ||
annotated-types==0.6.0 | ||
anyio==4.0.0 | ||
black==23.11.0 | ||
blinker==1.7.0 | ||
certifi==2023.11.17 | ||
click==8.1.7 | ||
coverage==7.3.2 | ||
essentials==1.1.5 | ||
flake8==5.0.4 | ||
Flask==2.2.2 | ||
h11==0.12.0 | ||
httpcore==0.15.0 | ||
httpx==0.24.0 | ||
flake8==6.1.0 | ||
Flask==3.0.0 | ||
h11==0.14.0 | ||
httpcore==1.0.2 | ||
httpx==0.25.1 | ||
idna==3.4 | ||
iniconfig==1.1.1 | ||
isort==5.10.1 | ||
iniconfig==2.0.0 | ||
isort==5.12.0 | ||
itsdangerous==2.1.2 | ||
Jinja2==3.1.2 | ||
markdown-it-py==2.2.0 | ||
MarkupSafe==2.1.2 | ||
markdown-it-py==3.0.0 | ||
MarkupSafe==2.1.3 | ||
mccabe==0.7.0 | ||
mdurl==0.1.2 | ||
mypy-extensions==0.4.3 | ||
packaging==21.3 | ||
pathspec==0.10.1 | ||
platformdirs==2.5.2 | ||
pluggy==1.0.0 | ||
py==1.11.0 | ||
pycodestyle==2.9.1 | ||
pydantic==1.10.2 | ||
pyflakes==2.5.0 | ||
Pygments==2.13.0 | ||
pyparsing==3.0.9 | ||
pyproject_hooks==1.0.0 | ||
pytest==7.2.0 | ||
pytest-cov==4.0.0 | ||
PyYAML==6.0 | ||
regex==2022.10.31 | ||
rfc3986==1.5.0 | ||
rich==13.3.5 | ||
mypy-extensions==1.0.0 | ||
packaging==23.2 | ||
pathspec==0.11.2 | ||
platformdirs==4.0.0 | ||
pluggy==1.3.0 | ||
pycodestyle==2.11.1 | ||
pydantic==2.5.1 | ||
pydantic_core==2.14.3 | ||
pyflakes==3.1.0 | ||
Pygments==2.17.1 | ||
pytest==7.4.3 | ||
pytest-cov==4.1.0 | ||
PyYAML==6.0.1 | ||
rich==13.7.0 | ||
sniffio==1.3.0 | ||
toml==0.10.2 | ||
tomli==2.0.1 | ||
typing_extensions==4.4.0 | ||
Werkzeug==2.2.2 | ||
typing_extensions==4.8.0 | ||
Werkzeug==3.0.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters