-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 793 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 793 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
[tool.poetry]
name = "Example Application"
version = "0.1.0"
description = "An example, to serve as a template."
authors = ["Claudine Chen"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
fastapi = "0.103.0"
pydantic = "2.3.0"
python-multipart = "^0.0.6"
uvicorn = "^0.23.2"
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
python-dotenv = "^1.0.0"
sqlalchemy = "^2.0.20"
psycopg2-binary = "^2.9.7"
alembic = "^1.11.3"
sqlalchemy-utils = "^0.41.1"
[tool.poetry.group.dev.dependencies]
black = "23.7.0"
flake8 = "6.1.0"
isort = "^5.12.0"
pre-commit = "2.21.0"
pytest = "^7.4.0"
pytest-dotenv = "^0.5.2"
responses = "^0.23.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"