-
Notifications
You must be signed in to change notification settings - Fork 40
/
pyproject.toml
42 lines (37 loc) · 1.26 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
[project]
name = "livestream_saver"
version = "0.2.0"
description = "Monitor Youtube channels to download live streams"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
keywords = ["youtube", "python"]
authors = [
{name = "glubsy", email = "[email protected]" }
]
# Classifiers help users find your project by categorizing it.
#
# For a list of valid classifiers, see https://pypi.org/classifiers/
classifiers = [ # Optional
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Topic :: Multimedia :: Video",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"pytube == 10.9.2"
"Pillow"
"git+https://github.com/yt-dlp/yt-dlp"
]
[project.urls] # Optional
"Homepage" = "https://github.com/glubsy/livestream_saver"
"Bug Reports" = "https://github.com/glubsy/livestream_saver/issues"
"Source" = "https://github.com/glubsy/livestream_saver"
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"