delarte/pyproject.toml
Barbagus 96f411cca0 Fix #24 and #25
Remove dependency to `webvtt-py` which was both too much and not enough
for our use case.
Implement a basic WebVTT to SRT converter according to ArteTV's usage of
WebVTT features.
2023-01-06 01:17:55 +01:00

29 lines
612 B
TOML

[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "delarte"
authors = [{name = "Barbagus", email = "barbagus@proton.me"}]
readme = "README.md"
license = {file = "LICENSE.md"}
classifiers = ["License :: OSI Approved :: GNU Affero General Public License v3"]
dynamic = ["version", "description"]
dependencies = [
"m3u8",
"requests",
"docopt-ng"
]
[project.urls]
Home = "https://git.afpy.org/fcode/delarte.git"
[project.optional-dependencies]
dev = [
"black",
"pydocstyle",
"toml"
]
[project.scripts]
delarte = "delarte.__main__:main"