mirror of
https://github.com/DragoonAethis/itch-dl.git
synced 2024-12-21 02:21:52 +01:00
90346f579a
Some of the misc issues were found with mypy. Not adding it to dev deps for now as it complains about missing types in libraries and does not honor noqa where we need it (non-literal TypedDict keys).
41 lines
1023 B
TOML
41 lines
1023 B
TOML
[tool.poetry]
|
|
name = "itch-dl"
|
|
packages = [{ include = "itch_dl" }]
|
|
version = "0.3.0"
|
|
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"
|
|
tqdm = "^4.64.0"
|
|
urllib3 = "^1.26.9"
|
|
requests = "^2.28.0"
|
|
python-slugify = "^6.1.2"
|
|
beautifulsoup4 = "^4.11.1"
|
|
lxml = "^4.9.0"
|
|
pydantic = "^1.9.1"
|
|
|
|
[tool.poetry.scripts]
|
|
itch-dl = "itch_dl.cli:run"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|