mirror of
https://github.com/correl/tornado-openapi3.git
synced 2024-11-15 03:00:19 +00:00
Rename module
This commit is contained in:
parent
f77f8a9660
commit
aa9e595fa9
5 changed files with 5 additions and 5 deletions
|
@ -1,3 +0,0 @@
|
||||||
from openapi3.requests import TornadoRequestFactory
|
|
||||||
|
|
||||||
__all__ = ["TornadoRequestFactory"]
|
|
|
@ -6,7 +6,7 @@ authors = ["Correl Roush <correl@gmail.com>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
readme = "README.rst"
|
readme = "README.rst"
|
||||||
packages = [
|
packages = [
|
||||||
{ include = "openapi3" },
|
{ include = "tornado_openapi3" },
|
||||||
]
|
]
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
|
|
|
@ -21,7 +21,7 @@ from tornado.testing import AsyncHTTPTestCase
|
||||||
from tornado.web import Application, RequestHandler
|
from tornado.web import Application, RequestHandler
|
||||||
from werkzeug.datastructures import ImmutableMultiDict
|
from werkzeug.datastructures import ImmutableMultiDict
|
||||||
|
|
||||||
from openapi3 import TornadoRequestFactory
|
from tornado_openapi3 import TornadoRequestFactory
|
||||||
|
|
||||||
|
|
||||||
settings(deadline=None)
|
settings(deadline=None)
|
||||||
|
|
3
tornado_openapi3/__init__.py
Normal file
3
tornado_openapi3/__init__.py
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
from tornado_openapi3.requests import TornadoRequestFactory
|
||||||
|
|
||||||
|
__all__ = ["TornadoRequestFactory"]
|
Loading…
Reference in a new issue