uploader/pyproject.toml
Untone 264e274f4b
Some checks failed
deploy / deploy (push) Has been cancelled
auth
2023-12-02 08:44:06 +03:00

48 lines
749 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"
boto3 = "^1.33.6"
botocore = "^1.33.6"
[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
)
'''