-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (41 loc) · 1.16 KB
/
pyproject.toml
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
36
37
38
39
40
41
42
43
44
45
46
[tool.poetry]
name = "archive-downloader"
version = "0.1.1"
description = "Archive Downloader simplifies bulk downloads from archive.org in Python"
authors = ["Andy Vandaric <[email protected]>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/andyvandaric/archive-downloader"
[tool.poetry.dependencies]
python = ">=3.10,<3.14"
typer = "^0.12.5"
rich = "^13.8.1"
tqdm = "^4.66.6"
psutil = "^6.1.0"
keyboard = "^0.13.5"
bs4 = "^0.0.2"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
python-semantic-release = "^9.12.0"
pyinstaller = "^6.11.0"
[tool.semantic_release]
version_source = "pyproject"
upload = { type = "github", tag = "v{version}" }
changelog_file = "CHANGELOG.md"
patch_without_tag = false
commit_parser = "angular"
[tool.semantic_release.changelog]
mode = "update"
insertion_flag = "<!-- version list -->"
exclude_commit_patterns = [
'''chore(?:\([^)]*?\))?: .+''',
'''ci(?:\([^)]*?\))?: .+''',
'''refactor(?:\([^)]*?\))?: .+''',
'''style(?:\([^)]*?\))?: .+''',
'''test(?:\([^)]*?\))?: .+''',
'''build\((?!deps\): .+)''',
'''Merged? .*'''
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"