-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
55 lines (48 loc) · 1.4 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
49
50
51
52
53
54
55
[tool.poetry]
name = "vidpack"
version = "0.3.1"
description = "A Python script for efficiently compressing videos without sacrificing quality"
authors = ["ivansaul"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/ivansaul/CLI-Video-Compressor"
repository = "https://github.com/ivansaul/CLI-Video-Compressor"
keywords = ["video", "compression", "ffmpeg", "python"]
include = ["LICENSE"]
classifiers = [
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Topic :: Multimedia :: Video",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Utilities",
]
[tool.poetry.scripts]
pack = "vidpack.cli:app"
[tool.poetry.dependencies]
python = "^3.10"
typer = "^0.12.5"
ffmpeg-progress-yield = "^0.9.1"
python-ffmpeg = "^2.0.12"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
ruff = "^0.6.8"
pytest-mock = "^3.14.0"
python-semantic-release = "^9.9.0"
[tool.semantic_release]
version_source = "tag"
version_variable = ["src/vidpack/__init__.py:__version__"]
version_toml = ["pyproject.toml:tool.poetry.version"]
branch = "master"
build_command = "pip install poetry && poetry build"
major_on_zero = true
allow_zero_version = true
upload_to_pypi = true
upload_to_release = true
commit_version_number = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff.lint]
preview = true
select = ['E', 'F', 'W', 'I']
ignore = ["E501"]