itchiodl/pyproject.toml

26 lines
628 B
TOML
Raw Permalink Normal View History

[tool.poetry]
name = "itchiodl"
version = "2.3.0"
description = "Python Scripts for downloading / archiving your itchio library"
authors = ["Peter Taylor <me@et1.uk>"]
license = "MIT"
readme = "Readme.md"
[tool.poetry.dependencies]
2021-12-18 02:51:52 +00:00
python = "^3.8"
2022-11-27 20:04:54 +00:00
requests = "^2.28.1"
beautifulsoup4 = "^4.10.0"
clint = "^0.5.1"
[tool.poetry.dev-dependencies]
2022-05-05 10:12:25 +00:00
black = "^22.3.0"
pylint = "^2.13.8"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
2022-03-09 13:55:22 +00:00
[tool.poetry.plugins."console_scripts"]
"itch-download" = "itchiodl.downloader.__main__:main"
2022-05-09 16:21:22 +00:00
"itch-load-bundle" = "itchiodl.bundle_tool.__main__:main"