-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (31 loc) · 882 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
[tool.poetry]
name = "worst"
version = "0.1.0"
description = "Worst"
authors = ["Fabio Ghirardello"]
readme = "README.md"
packages = [{include = "apiserver"}]
[tool.poetry.dependencies]
python = "^3.11"
psycopg = {extras = ["pool"], version = "^3.1.8"}
psycopg-binary = "^3.1.8"
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
python-multipart = "^0.0.6"
python-dotenv = "^1.0.0"
email-validator = "^2.0.0.post2"
requests = "^2.30.0"
validators = "^0.20.0"
uvicorn = {extras = ["standard"], version = "^0.22.0"}
fastapi = {extras = ["all"], version = "^0.100.0"}
sqlalchemy = "^2.0.19"
pyjwt = {extras = ["crypto"], version = "^2.8.0"}
meilisearch = "^0.29.0"
[tool.poetry.group.dev.dependencies]
autopep8 = "^2.0.2"
pytest = "^7.3.1"
httpx = "^0.24.0"
minio = "^7.1.14"
faker = "^18.11.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"