Skip to content

Commit 20c446c

Browse files
committedApr 20, 2021
initial
1 parent c429a42 commit 20c446c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎fastapi_async_sqlalchemy/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
__all__ = ["db", "SQLAlchemyMiddleware"]
44

5-
__version__ = "0.3.0a2"
5+
__version__ = "0.3.0a3"

‎setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
author_email="h0rn3t.null@gmail.com",
2323
description="Adds asynchronous SQLAlchemy support to FastAPI",
2424
long_description=long_description,
25-
packages=["fastapi-async-sqlalchemy"],
26-
# package_data={"fastapi-async-sqlalchemy": ["py.typed"]},
25+
packages=["fastapi_async_sqlalchemy"],
26+
package_data={"fastapi_async_sqlalchemy": ["py.typed"]},
2727
zip_safe=False,
2828
python_requires=">=3.7",
2929
install_requires=["starlette>=0.13.6", "SQLAlchemy>=1.4.9"],

0 commit comments

Comments
 (0)
Please sign in to comment.