dl/pyproject.toml

27 lines
526 B
TOML
Raw Normal View History

2023-06-09 16:30:06 +00:00
[tool.poetry]
name = "dl"
version = "0.1.0"
description = ""
authors = ["Michel Roux <xefir@crystalyx.net>"]
[tool.poetry.dependencies]
2023-10-05 13:25:01 +00:00
python = "^3.8.1"
2023-06-09 16:30:06 +00:00
requests = "^2.31.0"
2023-10-27 09:03:33 +00:00
transmission-rpc = "^7.0.3"
2023-06-09 16:30:06 +00:00
[tool.poetry.group.dev.dependencies]
2024-02-22 22:22:11 +00:00
black = "^24.2.0"
2024-01-05 06:43:22 +00:00
flake8 = "^7.0.0"
2023-06-09 16:30:06 +00:00
flake8-alphabetize = "^0.0.21"
flake8-black = "^0.3.6"
2023-10-01 16:18:46 +00:00
flake8-pyproject = "^1.2.3"
2024-01-26 11:42:53 +00:00
mypy = "^1.8.0"
types-requests = "^2.31.0"
2023-10-01 16:18:46 +00:00
[tool.flake8]
max-line-length = 100
2023-06-09 16:30:06 +00:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"