uploader/pyproject.toml
Stepan Vladovskiy 2964b72635
All checks were successful
Deploy on Push / deploy (push) Successful in 1m29s
feat: auth.py total recomp
2024-05-06 05:24:54 -03:00

48 lines
758 B
TOML

[tool.poetry]
name = "discoursio-migrator"
version = "0.2.6"
description = ""
authors = ["discoursio devteam"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
aiohttp = "^3.9.1"
uvicorn = "^0.24.0.post1"
starlette = "^0.33.0"
aioboto3 = "^9.0.0"
python-multipart = "^0.0.5"
[tool.poetry.dev-dependencies]
black = "^23.10.1"
[tool.poetry.group.dev.dependencies]
setuptools = "^69.0.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target-version = ['py312']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
| foo.py
)
'''