-
Notifications
You must be signed in to change notification settings - Fork 111
/
pyproject.toml
42 lines (38 loc) · 1.24 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "python-vlc-generator"
dynamic = ["version"]
authors = [
{ name = "Olivier Aubert", email = "[email protected]" }
]
maintainers = [
{ name = "Olivier Aubert", email = "[email protected]" }
]
readme = "README.md"
license = { text = "GPL-2+" }
description = "VLC python bindings generator."
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 or later (LGPLv2+)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: POSIX :: Other",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Multimedia",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Video",
"Topic :: Software Development :: Code Generators"
]
keywords = [ "vlc", "video", "bindings" ]
[project.urls]
Homepage = "https://wiki.videolan.org/PythonBinding"
[tool.setuptools]
packages = ["generator"]
[tool.setuptools.dynamic]
version = {attr = "generator.generate.__version__"}