-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
51 lines (45 loc) · 1.38 KB
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
45
46
47
48
49
50
51
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "QTube"
version = "2.5.1"
requires-python = ">=3.8"
authors = [
{ name = "Killian Lebreton", email = "killian.lebreton35@gmail.com" },
]
maintainers = [
{ name = "Killian Lebreton", email = "killian.lebreton35@gmail.com" },
]
description = "Automatically add Youtube videos to a playlist."
readme = "README.md"
license = { file = "LICENSE.txt" }
keywords = ["youtube", "videos", "playlist", "python", "python3"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Multimedia :: Video",
]
dependencies = [
"colorama>=0.4.6",
"google_api_python_client>=2.119.0",
"google_auth_oauthlib>=1.0.0",
"isodate>=0.6.1",
"numpy>=1.24.3",
"protobuf>=4.25.1",
"pytube>=15.0.0",
"Requests>=2.32.0",
"setuptools>=70.0.0",
]
[project.urls]
Homepage = "https://github.com/Killian42/QTube"
Issues = "https://github.com/Killian42/QTube/issues"
Repository = "https://github.com/Killian42/QTube"
[project.scripts]
qtube = "QTube.scripts.qtube:main"