-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (36 loc) · 870 Bytes
/
Copy pathpyproject.toml
File metadata and controls
43 lines (36 loc) · 870 Bytes
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 = "textwatermark-service"
version = "0.2.2"
description = ""
authors = ["Monyer <monyer@126.com>"]
readme = "README.md"
license = "Apache"
packages = [{ include = "textwatermark_service", from = "src" }]
[tool.poetry.dependencies]
python = "^3.10"
dynaconf = "^3.1"
fastapi = "^0.109.1"
python-multipart = "^0.0.7"
psycopg2-binary = "^2.9.5"
sqlalchemy = "^2.0.4"
textwatermark = "^0.3.2"
uvicorn = "^0.20.0"
gunicorn = "^22.0.0"
redis = "^4.5.4"
[tool.poetry.group.dev.dependencies]
autopep8 = "^2.0.1"
httpx = "^0.23.3"
pytest = "^7.2.1"
tox = "^4.4.6"
black = "^24.3.0"
mypy = "^1.0.1"
coverage = "^7.2.1"
pytest-cov = "^4.0.0"
isort = "^5.12.0"
sqlalchemy = { extras = ["mypy"], version = "^2.0.6" }
types-redis = "^4.5.1.5"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"