2021-10-13 15:09:17 +02:00
|
|
|
[tool.poetry]
|
|
|
|
name = "itch-dl"
|
2022-05-15 02:02:45 +02:00
|
|
|
packages = [{ include = "itch_dl" }]
|
2022-06-12 19:50:43 +02:00
|
|
|
version = "0.3.1"
|
2021-10-13 15:09:17 +02:00
|
|
|
description = "itch.io bulk game downloader"
|
|
|
|
homepage = "https://github.com/DragoonAethis/itch-dl"
|
|
|
|
repository = "https://github.com/DragoonAethis/itch-dl"
|
|
|
|
authors = ["Dragoon Aethis <dragoon@dragonic.eu>"]
|
|
|
|
readme = "README.md"
|
|
|
|
license = "MIT"
|
|
|
|
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 4 - Beta",
|
|
|
|
"Environment :: Console",
|
|
|
|
"Topic :: System :: Archiving :: Backup",
|
|
|
|
"Topic :: Games/Entertainment",
|
|
|
|
"Topic :: Utilities",
|
|
|
|
"Typing :: Typed"
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.poetry.urls]
|
|
|
|
"Wiki" = "https://github.com/DragoonAethis/itch-dl/wiki"
|
|
|
|
"Bug Tracker" = "https://github.com/DragoonAethis/itch-dl/issues"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.8"
|
2022-05-15 02:02:45 +02:00
|
|
|
tqdm = "^4.64.0"
|
|
|
|
urllib3 = "^1.26.9"
|
2022-06-12 19:31:25 +02:00
|
|
|
requests = "^2.28.0"
|
2022-05-15 02:02:45 +02:00
|
|
|
python-slugify = "^6.1.2"
|
|
|
|
beautifulsoup4 = "^4.11.1"
|
2022-06-12 19:28:31 +02:00
|
|
|
lxml = "^4.9.0"
|
|
|
|
pydantic = "^1.9.1"
|
2021-10-13 15:09:17 +02:00
|
|
|
|
2022-05-15 02:02:45 +02:00
|
|
|
[tool.poetry.scripts]
|
|
|
|
itch-dl = "itch_dl.cli:run"
|
2021-10-13 15:09:17 +02:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|