delarte/pyproject.toml
Barbagus a108135141 Use urllib3 instead of requests
We were not (and probably wont be ) using any worthwhile `requests`
features (beside `raise_for_status()`) and the `timeout` session
parameter propagation vs adapter plugging "thing" in requests just
annoys me deeply (not that kind of "... Human (TM)")
2023-02-13 09:35:33 +01:00

28 lines
602 B
TOML

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