add session handler for mongodb: MongoDBSessionInterface

This commit is contained in:
Kyle Smith
2022-03-17 15:51:45 -04:00
parent a19f227d88
commit b9f2dc0067
4 changed files with 130 additions and 14 deletions
+2 -1
View File
@@ -24,7 +24,7 @@ INSTALL_REQUIRES = [
setup(
name='Quart-Session',
version='1.0.4',
version='1.0.5-dev',
url='https://github.com/sferdi0/quart-session',
license='BSD',
author='Sander',
@@ -40,6 +40,7 @@ setup(
tests_require=INSTALL_REQUIRES + ["asynctest", "hypothesis", "pytest", "pytest-asyncio"],
extras_require={
"dotenv": ["python-dotenv"],
"mongodb": ["motor>=2.5.1"],
"redis": ["aioredis>=2.0.0"]
},
classifiers=[