forked from zarlo/fastapi_session
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
48 lines (44 loc) · 1.14 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[tool.poetry]
name = "fastapi-session"
version = "0.8.4"
description = "A fastapi library for managing session of different types"
authors = ["Maxim Yakovenko <[email protected]>", "Zarlo <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/TheLazzziest/fastapi_session"
documentation = ""
keywords = [
"Asyncio",
"FastAPI",
"Session",
"Cookie",
"Secured"
]
[tool.poetry.dependencies]
python = "^3.8"
aiofiles = "^0.6.0"
portalocker = "^2.0.0"
aioredis = "^1.3.1"
fastapi = "^0.63.0"
cryptography = "^3.4.6"
pendulum = "^2.1.2"
pycryptodomex = "^3.10.1"
[tool.poetry.dev-dependencies]
pytest = "^6.2.1"
pytest-asyncio = "^0.14.0"
asynctempfile = "^0.5.0"
ipython = "^7.19.0"
black = {version = "^20.8b1", allow-prereleases = true}
hypothesis = "^5.47.0"
pytest-subtests = "^0.4.0"
databases = {extras = ["sqlite"], version = "^0.4.1"}
uvicorn = "^0.13.3"
httpx = "^0.16.1"
pytest-mock = "^3.5.1"
requests = "^2.25.1"
asgi-lifespan = "^1.0.1"
[tool.poetry.urls]
issues = "https://github.com/TheLazzziest/fastapi-session/issues"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"