-
-
Notifications
You must be signed in to change notification settings - Fork 79
/
pyproject.toml
48 lines (40 loc) · 1.1 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
47
48
[tool.poetry]
name = "twspace-dl"
version = "2024.7.2.1"
description = "The only tool to record Twitter spaces (yet)"
authors = ["Ryu1845 <[email protected]>", "erfan_rfmhr <[email protected]>"]
readme = "README.md"
license = "GPL-2.0-only"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Topic :: Multimedia :: Sound/Audio :: Capture/Recording"
]
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.26.0"
mutagen = "^1.46.0"
[tool.poetry.scripts]
twspace_dl = "twspace_dl.__main__:main"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
black = "^22.1.0"
mypy = "^0.940"
isort = "^5.10.1"
flake8 = "^4.0.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.bumpver]
current_version = "2023.7.24.1"
version_pattern = "YYYY.MM.DD.PATCH[-TAG]"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'version = "{version}"',
# 'current_version = "{version}"',
]