2021-12-18 02:48:27 +00:00
|
|
|
[tool.poetry]
|
2022-03-09 11:05:05 +00:00
|
|
|
name = "itchiodl"
|
2023-03-16 08:05:09 +00:00
|
|
|
version = "2.3.0"
|
2021-12-18 02:48:27 +00:00
|
|
|
description = "Python Scripts for downloading / archiving your itchio library"
|
|
|
|
|
authors = ["Peter Taylor <me@et1.uk>"]
|
|
|
|
|
license = "MIT"
|
2022-03-09 11:09:16 +00:00
|
|
|
readme = "Readme.md"
|
2021-12-18 02:48:27 +00:00
|
|
|
|
|
|
|
|
[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"
|
2021-12-18 02:48:27 +00:00
|
|
|
beautifulsoup4 = "^4.10.0"
|
2022-03-06 12:30:25 +00:00
|
|
|
clint = "^0.5.1"
|
2021-12-18 02:48:27 +00:00
|
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2022-05-05 10:12:25 +00:00
|
|
|
black = "^22.3.0"
|
|
|
|
|
pylint = "^2.13.8"
|
2021-12-18 02:48:27 +00:00
|
|
|
|
|
|
|
|
[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"
|