44 lines
937 B
TOML
44 lines
937 B
TOML
[tool.poetry]
|
|
name = "archives"
|
|
version = "0.1.3"
|
|
description = ""
|
|
authors = ["Benedikt Kristinsson <benedikt@lokun.is>"]
|
|
readme = "README.md"
|
|
repository = "https://git.sudo.is/ben/archives"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9"
|
|
loguru = "^0.6.0"
|
|
aiohttp = "^3.8.1"
|
|
aiohttp-jinja2 = "^1.5"
|
|
humanize = "^3.14.0"
|
|
aiofiles = "^0.8.0"
|
|
aiozipstream = "^0.4"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest = "^5.2"
|
|
autopep8 = "^1.6.0"
|
|
isort = "^5.10.1"
|
|
black = "^22.1.0"
|
|
flake8 = "^4.0.1"
|
|
|
|
[tool.poetry.scripts]
|
|
archives = "archives.main:run_app"
|
|
update_du_cache = "archives.main:update_du_cache"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.isort]
|
|
skip = [".gitignore", ".dockerignore", ".git", "tests"]
|
|
extend_skip = [".md", ".json", ".toml"]
|
|
multi_line_output = 9
|
|
profile = "black"
|
|
line_length = 79
|
|
quiet = true
|
|
|
|
[tool.black]
|
|
line-length = 80
|
|
target-version = ["py39"]
|
|
exclude = ["tests"] |