-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
139 lines (129 loc) · 4.01 KB
/
Copy pathpyproject.toml
File metadata and controls
139 lines (129 loc) · 4.01 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "vidtuber"
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.9"
authors = [
{name = "Gianluca Pernigotto", email = "jeanlucperni@gmail.com"}
]
maintainers = [
{name = "Gianluca Pernigotto", email = "jeanlucperni@gmail.com"}
]
description = "Vidtuber is a simple yet comprehensive, cross-platform GUI for yt-dlp"
license = {text = "GNU General Public License v3 (GPLv3)"}
keywords = [
"vidtuber",
"wxpython",
"yt-dlp",
"youtube-dl"]
classifiers = [
"Environment :: X11 Applications :: GTK",
"Development Status :: 5 - Production/Stable",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: Arabic",
"Natural Language :: Chinese (Simplified)",
"Natural Language :: Czech",
"Natural Language :: Dutch",
"Natural Language :: English",
"Natural Language :: French",
"Natural Language :: German",
"Natural Language :: Hungarian",
"Natural Language :: Italian",
"Natural Language :: Portuguese (Brazilian)",
"Natural Language :: Russian",
"Natural Language :: Spanish",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Multimedia :: Video"
]
dependencies = [
"wxpython>=4.1.0;platform_system == 'Windows' or platform_system == 'Darwin'",
"pypubsub>=4.0.3",
"requests",
"yt-dlp"
]
[project.optional-dependencies]
cli = []
build = [
"build",
"hatchling",
"pip",
"six",
"wheel",
"setuptools",
"babel",
]
pyinstaller = [
"pyinstaller",
]
[tool.hatch.build.hooks.custom] # see hatch_build.py file
# https://github.com/pypa/hatch/discussions/1047
dependencies = [
"babel"
]
[tool.hatch.version]
path = "vidtuber/vt_sys/about_app.py"
[tool.hatch.build.targets.sdist]
include = [
"vidtuber",
"docs/man",
"develop",
"tests",
"AUTHORS",
"BUGS",
"CHANGELOG",
"INSTALL",
"LICENSE",
"README.md", # already included as readme
"TODO",
"launcher",
"requirements",
"requirements.txt",
"xdg",
".gitignore", # already included by default, needed for auto-excludes
".flake8",
".pylintrc",
]
exclude = [
"debian",
"docs/UserGuide",
"vidtuber/data/icons/vidtuber.icns",
"vidtuber/data/icons/vidtuber.ico",
"vidtuber/data/locale/vidtuber.pot",
"vidtuber/data/locale/README",
"vidtuber/data/FFMPEG",
"vidtuber/data/YT-DLP",
]
[tool.hatch.build.targets.wheel]
packages = ["vidtuber"]
artifacts = [
# https://hatch.pypa.io/latest/config/build/#artifacts
"*.mo",
]
[tool.hatch.build.targets.wheel.shared-data]
"docs/man/vidtuber.1.gz" = "share/man/man1/vidtuber.1.gz"
"xdg/io.github.jeanslack.vidtuber.appdata.xml" = "share/metainfo/io.github.jeanslack.vidtuber.appdata.xml"
"xdg/io.github.jeanslack.vidtuber.desktop" = "share/applications/io.github.jeanslack.vidtuber.desktop"
"vidtuber/data/icons/vidtuber.png" = "share/pixmaps/vidtuber.png"
"vidtuber/data/hicolor/48x48/apps/vidtuber.xpm" = "share/icons/hicolor/48x48/apps/vidtuber.xpm"
"vidtuber/data/hicolor/48x48/apps/vidtuber.png" = "share/icons/hicolor/48x48/apps/vidtuber.png"
"vidtuber/data/hicolor/256x256/apps/vidtuber.png" = "share/icons/hicolor/256x256/apps/vidtuber.png"
"vidtuber/data/hicolor/scalable/apps/vidtuber.svg" = "share/icons/hicolor/scalable/apps/vidtuber.svg"
[project.gui-scripts]
vidtuber = "vidtuber.gui_app:main"
[project.urls]
Homepage = "https://github.com/jeanslack/Vidtuber"
Documentation = "https://github.com/jeanslack/Vidtuber"
Repository = "https://github.com/jeanslack/Vidtuber"
Issues = "https://github.com/jeanslack/Vidtuber/issues"