-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
53 lines (48 loc) · 1.17 KB
/
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
44
45
46
47
48
49
50
51
52
53
[tool.poetry]
name = "storage"
version = "0.2.7"
description = "A RESTful API for storing files in web3 storage networks."
authors = ["Alisher A. Khassanov <a.khssnv@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.93.0"
uvicorn = {extras = ["standard"], version = "^0.18.3"}
pydantic = "^1.10.2"
fastapi-camelcase = "^1.0.5"
python-multipart = "^0.0.5"
pydantic-partial = "^0.3.3"
python-dotenv = "^0.21.0"
loguru = "^0.6.0"
httpx = "^0.23.0"
aiohttp = "^3.8.3"
SQLAlchemy = "^1.4.42"
psycopg2-binary = "^2.9.3"
SQLAlchemy-Utils = "^0.38.3"
alembic = "^1.8.1"
tenacity = "^8.1.0"
typeguard = "^2.13.3"
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
bcrypt = "^4.0.1"
aiosmtplib = "^2.0.1"
requests = "^2.28.2"
pytest = "^7.2.2"
aioboto3 = "^11.1.0"
ipfs-cid = "^1.0.0"
casdoor = "^1.10.0"
fastapi-pagination = "^0.12.9"
[tool.poetry.dev-dependencies]
isort = "^5.12.0"
black = "^22.10.0"
flake8 = "^5.0.4"
ipython = "^8.5.0"
ipdb = "^0.13.9"
pre-commit = "^2.20.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ["py310"]
[tool.isort]
profile = "black"
multi_line_output = 3