-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
68 lines (63 loc) · 1.38 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[tool.poetry]
name = "klepp"
version = "0.1.0"
description = "API for uploading/deleting S3 files"
authors = [
"Jonas Krüger Svensson <jonas-ks@hotmail.com>",
]
license = "MIT"
[tool.poetry.dependencies]
python = "3.10.4"
fastapi = ">=0.72.0"
cryptography = ">=35.0.0"
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
uvicorn = {extras = ["standard"], version = "^0.13.4"}
python-multipart = "^0.0.5"
aiobotocore = "^2.1.0"
aioboto3 = "^9.3.1"
httpx = "^0.21.3"
pydantic = "1.9.0"
gunicorn = "^20.1.0"
typed-ast = "^1.5.2"
alembic = "^1.7.6"
sqlmodel = "^0.0.6"
asgi-correlation-id = "^1.1.2"
asyncpg = "^0.25.0"
greenlet = "^1.1.2"
psycopg2 = "^2.9.3"
aiofiles = "^0.8.0"
asyncffmpeg = "^1.2.0"
asynccpu = "^1.2.2"
ffmpeg-python = "^0.2.0"
Jinja2 = "^3.1.1"
[tool.poetry.dev-dependencies]
pre-commit = "^2.9.3"
black = "^20.8b1"
isort = "^5.8.0"
mypy = ">=0.812"
ipython = "^8.1.1"
[tool.black]
line-length = 120
skip-string-normalization = true
target-version = ['py37']
include = '\.pyi?$'
exclude = '''
(
(\.eggs|\.git|\.hg|\.mypy_cache|\.tox|\.venv|\venv|\.github|\docs|\tests|\__pycache__)
)
'''
[tool.isort]
profile = "black"
src_paths = ["app"]
combine_as_imports = true
line_length = 120
sections = [
'FUTURE',
'STDLIB',
'THIRDPARTY',
'FIRSTPARTY',
'LOCALFOLDER',
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"