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
|
# Copyright 2022 Collabora Ltd.
# SPDX-License-Identifier: MIT
[build-system]
build-backend = 'mesonpy'
requires = [
'meson-python>=0.8.1',
'meson>=0.60.0',
'ninja',
'patchelf',
'setuptools',
'wheel',
]
[project]
name = 'dbus-python'
license = { text = 'Expat (MIT/X11)' }
description = 'Python bindings for libdbus'
maintainers = [
{ name = 'The D-Bus maintainers', email = 'dbus@lists.freedesktop.org' },
]
requires-python = '>=3.7'
readme = { file = 'README', content-type = 'text/x-rst' }
keywords = ['dbus', 'D-Bus']
classifiers = [
'Development Status :: 7 - Inactive',
'License :: OSI Approved :: MIT License',
'Programming Language :: C',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Object Brokering',
]
dynamic = [
'version'
]
[project.optional-dependencies]
doc = [
'sphinx',
'sphinx_rtd_theme',
]
test = [
'tap.py',
]
[project.urls]
homepage = 'http://www.freedesktop.org/wiki/Software/DBusBindings/#python'
download = 'http://dbus.freedesktop.org/releases/dbus-python/'
source = 'https://gitlab.freedesktop.org/dbus/dbus-python/'
tracker = 'https://gitlab.freedesktop.org/dbus/dbus-python/-/issues'
|