mirror of
https://github.com/DragoonAethis/itch-dl.git
synced 2025-01-22 01:41:11 +01:00
Manage project with Poetry
This commit is contained in:
parent
d487334258
commit
998f8b0de6
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,3 +1,6 @@
|
||||
# Developers' private notes/output dirs/etc
|
||||
private/
|
||||
|
||||
# Byte-compiled / optimized / DLL files
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
|
35
pyproject.toml
Normal file
35
pyproject.toml
Normal file
@ -0,0 +1,35 @@
|
||||
[tool.poetry]
|
||||
name = "itch-dl"
|
||||
packages = [{ include = "itchdl" }]
|
||||
version = "0.1.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"
|
||||
requests = "^2.26.0"
|
||||
python-slugify = "^5.0.0"
|
||||
|
||||
[tool.poetry.dev-dependencies]
|
||||
pytest = "^6.2"
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core>=1.0.0"]
|
||||
build-backend = "poetry.core.masonry.api"
|
@ -1,2 +0,0 @@
|
||||
requests
|
||||
python-slugify
|
Loading…
x
Reference in New Issue
Block a user