-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (37 loc) · 938 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
42
43
[tool.poetry]
name = "banchi"
version = "0.1.0"
description = ""
authors = ["R202"]
[tool.poetry.dependencies]
python = "^3.11"
flask-caching = "^2.0.2"
authlib = "^1.3.2"
flask-wtf = "^1.1.1"
flask = "^3.0.3"
black = "^24.2.0"
python-dotenv = "^1.0.1"
uvicorn = "^0.27.1"
loguru = "^0.7.2"
pydantic-settings = "^2.2.1"
redis = "^5.0.7"
rq = "^1.16.2"
beanie = "^1.26.0"
pydantic = {extras = ["email"], version = "^2.6.4"}
passlib = "^1.7.4"
python-jose = "^3.3.0"
python-multipart = "^0.0.9"
flask-login = "^0.6.3"
openapi-python-client = "^0.21.2"
fastapi = "^0.111.1"
requests = "^2.32.3"
banchi-client = { path = "./clients/banchi-client" }
[tool.poetry.dev-dependencies]
watchdog = "^2.1.3"
[tool.poetry.scripts]
banchi-web = "banchi.cmd.web:main"
# banchi-api = "banchi.cmd.api:main"
banchai-worker = "banchiapi.worker.worker_rq:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"