forked from jeanslack/Videomass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
139 lines (130 loc) · 4.04 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
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 = "videomass"
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.8"
authors = [
{name = "Gianluca Pernigotto", email = "[email protected]"}
]
maintainers = [
{name = "Gianluca Pernigotto", email = "[email protected]"}
]
description = "Videomass is a cross-platform GUI for FFmpeg and yt-dlp"
license = {text = "GNU General Public License v3 (GPLv3)"}
keywords = [
"videomass",
"converter",
"wxpython",
"yt-dlp",
"ffmpeg"]
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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Video",
"Topic :: Multimedia :: Video :: Conversion",
"Topic :: Multimedia :: Sound/Audio :: Conversion"
]
dependencies = [
"wxpython>=4.0.7",
"pypubsub>=4.0.3",
"requests>=2.31.0"
]
[project.optional-dependencies]
cli = [
"yt-dlp",
]
build = [
"build",
"hatchling",
"pip",
"six",
"wheel",
"setuptools",
"babel",
]
pyinstaller = [
"pyinstaller",
]
[tool.hatch.build.hooks.custom] # see hatch_build.py file
dependencies = [
"babel"
]
[tool.hatch.version]
path = "videomass/vdms_sys/about_app.py"
[tool.hatch.build.targets.sdist]
include = [
"videomass",
"debian",
"docs/man",
"develop",
"tests",
"AUTHORS",
"BUGS",
"CHANGELOG",
"INSTALL",
"LICENSE",
"README.md", # already included as readme
"TODO",
"launcher",
"requirements",
"xdg",
".gitignore", # already included by default, needed for auto-excludes
".flake8",
".pylintrc",
]
exclude = [
"videomass/data/icons/videomass.icns",
"videomass/data/icons/videomass.ico",
"videomass/data/locale/videomass.pot",
"videomass/data/locale/README",
"videomass/data/FFMPEG",
]
[tool.hatch.build.targets.wheel]
packages = ["videomass"]
artifacts = [
# https://hatch.pypa.io/latest/config/build/#artifacts
"*.mo",
]
[tool.hatch.build.targets.wheel.shared-data]
"docs/man/videomass.1.gz" = "share/man/man1/videomass.1.gz"
"xdg/io.github.jeanslack.videomass.appdata.xml" = "share/metainfo/io.github.jeanslack.videomass.appdata.xml"
"xdg/io.github.jeanslack.videomass.desktop" = "share/applications/io.github.jeanslack.videomass.desktop"
"videomass/data/icons/videomass.png" = "share/pixmaps/videomass.png"
"videomass/data/hicolor/48x48/apps/videomass.xpm" = "share/icons/hicolor/48x48/apps/videomass.xpm"
"videomass/data/hicolor/48x48/apps/videomass.png" = "share/icons/hicolor/48x48/apps/videomass.png"
"videomass/data/hicolor/256x256/apps/videomass.png" = "share/icons/hicolor/256x256/apps/videomass.png"
"videomass/data/hicolor/scalable/apps/videomass.svg" = "share/icons/hicolor/scalable/apps/videomass.svg"
[project.gui-scripts]
videomass = "videomass.gui_app:main"
[project.urls]
Homepage = "https://jeanslack.github.io/Videomass/"
Documentation = "https://jeanslack.github.io/Videomass/Docs.html"
Wiki = "https://github.com/jeanslack/Videomass/wiki"
Repository = "https://github.com/jeanslack/Videomass"
Issues = "https://github.com/jeanslack/Videomass/issues"