mirrored from https://gitlab.freedesktop.org/gstreamer/cerbero.git
-
Notifications
You must be signed in to change notification settings - Fork 105
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 1.17 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
[build-system]
requires = ["setuptools>=45", "wheel", "distro"]
build-backend = "setuptools.build_meta"
[project]
name = "cerbero"
version = "1.29.1.1" # Keep in sync with cerbero/enums.py::CERBERO_VERSION
description = "Multi platform build system for Open Source projects"
readme = "README.md"
license = {text = "LGPL-2.0-or-later"}
authors = [
{name = "Andoni Morales", email = "amorales@fluendo.com"},
]
classifiers = [
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
"Programming Language :: Python :: 3",
"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",
]
requires-python = ">=3.9"
dependencies = [
"distro ; sys_platform == 'linux'",
]
[project.urls]
Homepage = "https://gstreamer.freedesktop.org/"
Repository = "https://gitlab.freedesktop.org/gstreamer/cerbero"
[project.scripts]
cerbero = "cerbero.main:main"
[tool.setuptools]
zip-safe = false
include-package-data = false
[tool.setuptools.packages.find]
exclude = ["test*", "build*", "output*", "tmp*"]