-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 925 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (30 loc) · 925 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[tool.poetry]
name = "spankbang-dl"
version = "0.1.1"
description = "A download tool for Spankbang"
license = "GPL-3.0-only"
authors = ["Alejandro González Momblán <agelrenorenardo@gmail.com>"]
readme = "README.md"
repository = "https://github.com/yisuschrist/spankbang-dl"
include = [{ path = "spankbang_dl/strings", format = ["sdist", "wheel"] }]
[tool.poetry.dependencies]
python = "^3.9"
beautifulsoup4 = ">=4.13.4"
cloudscraper = ">=1.2.71"
core-helpers = ">=1.3.0"
inquirer = ">=3.1.3"
requests = ">=2.31.0"
rich = ">=13.5.3"
[tool.poetry.group.types.dependencies]
types-requests = "^2.32.0.20240907"
[tool.poetry.scripts]
spankbang-dl = "spankbang_dl.__main__:main"
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "$version"
version_scheme = "semver"
version_provider = "poetry"
update_changelog_on_bump = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"