-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
54 lines (48 loc) · 1.15 KB
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
49
50
51
52
53
54
[tool.poetry]
name = "python-fast-api-sample"
version = "0.1.0"
description = ""
authors = ["sangle"]
readme = "README.md"
[tool.poetry.group.dev.dependencies]
pylint = "^3.2.0"
autopep8 = "^2.1.0"
pre-commit = "^3.7.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies]
python = "^3.11"
SQLAlchemy = { version = "~2.0", extras = ["asyncio", "mypy"] }
aiosqlite = "~0.19"
alembic = "~1.10"
fastapi = "0.92.0"
greenlet = "~2.0"
gunicorn = "~20.1"
loguru = "~0.6"
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
pydantic = { version = "~1.10", extras = ["dotenv"] }
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
uvicorn = "~0.21.0"
websockets = "~11.0"
pymysql = "^1.1.0"
aiomysql = "^0.2.0"
jinja2 = "^3.1.4"
pylint = "^3.2.0"
[tool.poetry.dev-dependencies]
black = "~23.1"
httpx = "~0.23"
hypothesis = "~6.68"
isort = "~5.12"
mypy = "~1.0"
pre-commit = "~3.1"
pydantic-factories = "~1.17"
pytest = "~7.2"
pytest-cov = "~4.0"
pytest-env = "~0.8"
pytest-lazy-fixture = "~0.6"
pytest-mock = "~3.10"
ruff = "~0.0.261"
sqlalchemy-stubs = "~0.4"
types-passlib = "~1.7"
types-python-jose = "~3.3"