-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (38 loc) · 924 Bytes
/
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
[tool.poetry]
name = "ithome2023-fastapi-tutorial"
version = "0.1.0"
description = ""
authors = ["jason810496 <[email protected]>"]
readme = "README.md"
packages = [{include = "ithome2023_fastapi_tutorial"}]
[tool.poetry.dependencies]
python = "^3.11"
fastapi = "^0.103.1"
uvicorn = "^0.23.2"
python-dotenv = "^1.0.0"
email-validator = "^2.0.0.post2"
sqlalchemy = "^2.0.21"
psycopg2-binary = "^2.9.7"
pymysql = "^1.1.0"
cryptography = "^41.0.4"
asyncpg = "^0.28.0"
greenlet = "^2.0.2"
aiomysql = "^0.2.0"
passlib = "^1.7.4"
bcrypt = "^4.0.1"
python-multipart = "^0.0.6"
python-jose = "^3.3.0"
pytest = "^7.4.2"
httpx = "^0.25.0"
pytest-asyncio = "^0.21.1"
pytest-sugar = "^0.9.7"
redis = "^5.0.1"
grequests = "^0.7.0"
sentry-sdk = "^1.38.0"
aiofiles = "^23.2.1"
speechrecognition = "^3.10.1"
moviepy = "^1.0.3"
rq = "^1.15.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"