-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
44 lines (39 loc) · 1.59 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
[project]
name = "stream-localhost"
dynamic = ["version", "dependencies"]
description = "Python module to, stream videos via authenticated sessions using FastAPI"
readme = "README.md"
authors = [{ name = "Vignesh Rao", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Multimedia :: Video"
]
keywords = ["video-streaming", "localhost"]
requires-python = ">=3.8"
[tool.setuptools]
packages = ["pystream", "pystream.models", "pystream.routers", "pystream.templates"]
[tool.setuptools.package-data]
"pystream.templates" = ["*.html"]
"pystream.routers" = ["blank.jpg"]
[tool.setuptools.dynamic]
version = {attr = "pystream.version"}
dependencies = {file = ["pystream/requirements.txt"]}
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
dev = ["sphinx==5.1.1", "pre-commit", "recommonmark", "gitverse"]
[project.urls]
Homepage = "https://github.com/thevickypedia/pystream"
Docs = "https://thevickypedia.github.io/PyStream/"
Source = "https://github.com/thevickypedia/pystream"
"Bug Tracker" = "https://github.com/thevickypedia/pystream/issues"
"Release Notes" = "https://github.com/thevickypedia/pystream/blob/main/release_notes.rst"