-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
30 lines (27 loc) · 915 Bytes
/
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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "pymplschapters"
version = "1.0.4"
description = "Extract chapters from a Blu-ray .mpls to a Matroska recognized XML file."
license = "MIT"
authors = ["rlaphoenix <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/rlaphoenix/pymplschapters"
repository = "https://github.com/rlaphoenix/pymplschapters"
keywords = ["mpls", "blu-ray", "playlist", "chapters", "matroska"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Multimedia"
]
[tool.poetry.dependencies]
python = ">=3.7,<3.11"
lxml = "^4.9.2"
[tool.poetry.scripts]
pymplschapters = "pymplschapters.__init__:main"