forked from superolmo/pyxtream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
30 lines (27 loc) · 821 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
[tool.poetry]
name = "pyxtream"
version = "0.7.2"
description = "xtream IPTV loader"
authors = ["Claudio Olmi <[email protected]>"]
license = "GPL3"
readme = "README.md"
homepage = "https://github.com/superolmo/pyxtream"
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Natural Language :: English"
]
[tool.poetry.dependencies]
python = ">=3.9"
requests = "^2.32.3"
jsonschema = "^4.23.0"
flask = {version = "^3.1.0", optional = true}
[tool.poetry.group.dev.dependencies]
pdoc = "^15.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"