-
-
Notifications
You must be signed in to change notification settings - Fork 769
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
022bb8f
commit 15e985e
Showing
18 changed files
with
123 additions
and
188 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -16,3 +16,4 @@ venv/ | |
.venv/ | ||
src/ | ||
*.un~ | ||
poetry.lock |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -31,6 +31,3 @@ | |
|
||
App = FlaskApp | ||
Api = FlaskApi | ||
|
||
# This version is replaced during release process. | ||
__version__ = "3.0.dev0" |
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 |
---|---|---|
@@ -0,0 +1,95 @@ | ||
[tool.poetry] | ||
name = "connexion" | ||
version = "3.0.dev0" | ||
description = "Connexion - API first applications with OpenAPI/Swagger" | ||
readme = "README.rst" | ||
keywords = ["api", "swagger", "openapi"] | ||
license = "Apache-2.0" | ||
authors = [ | ||
"Daniel Grossmann-Kavanagh <me@danielgk.com>", | ||
"Henning Jacobs <henning.jacobs@zalando.de>", | ||
"João Santos <joao.santos@zalando.de>", | ||
"Robbe Sneyders <robbe.sneyders@gmail.com>", | ||
"Ruwan Lambrichts <ruwan.lambrichts@ml6.eu>", | ||
] | ||
maintainers = [ | ||
"Robbe Sneyders <robbe.sneyders@gmail.com>", | ||
"Ruwan Lambrichts <ruwan.lambrichts@ml6.eu>", | ||
] | ||
repository = "https://github.com/spec-first/connexion" | ||
include = ["*.txt", "*.rst"] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Topic :: Internet", | ||
"Topic :: Internet :: WWW/HTTP", | ||
"Topic :: Internet :: WWW/HTTP :: HTTP Servers", | ||
"Topic :: Software Development", | ||
"Topic :: Software Development :: Libraries", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"Typing :: Typed", | ||
] | ||
|
||
[tool.poetry.scripts] | ||
connexion = 'connexion.cli:main' | ||
|
||
[tool.poetry.dependencies] | ||
python = '^3.7' | ||
clickclick = ">= 1.2, < 21" | ||
httpx = "^0.15" | ||
importlib_metadata = { version = "^6.0.0", python = "<3.8" } | ||
inflection = ">= 0.3.1, < 0.6" | ||
jsonschema = "^4.0.1" | ||
Jinja2 = "^3.0.0" | ||
python-multipart = "~0.0.5" | ||
PyYAML = ">= 5.1, < 7" | ||
requests = "^2.27" | ||
starlette = "^0.19" | ||
typing-extensions = "^4" | ||
werkzeug = "^2.2.1" | ||
|
||
a2wsgi = { version = "^1.4", optional = true } | ||
flask = { version = "^2.2", extras = ["async"], optional = true } | ||
py-swagger-ui = { version = "^1.1.0", optional = true } | ||
uvicorn = { version = "^0.17.6", extras = ["standard"], optional = true } | ||
|
||
[tool.poetry.extras] | ||
flask = ["a2wsgi", "flask"] | ||
swagger-ui = ["py-swagger-ui"] | ||
uvicorn = ["uvicorn"] | ||
|
||
[tool.poetry.group.tests.dependencies] | ||
pre-commit = "~2.21.0" | ||
pytest = "7.2.1" | ||
pytest-asyncio = "~0.18.3" | ||
pytest-cov = "~2.12.1" | ||
|
||
[tool.poetry.group.docs.dependencies] | ||
sphinx-autoapi = "1.8.1" | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.2.0"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
||
[tool.distutils.bdist_wheel] | ||
universal = true | ||
|
||
[tool.pytest.ini_options] | ||
filterwarnings = [ | ||
"ignore::DeprecationWarning:connexion.*:", | ||
"ignore::FutureWarning:connexion.*:", | ||
] | ||
asyncio_mode = "auto" | ||
|
||
[tool.isort] | ||
profile = "black" |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.