-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
39 lines (36 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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "pipewire_python"
authors = [
{name = "Pablo Diaz"},
{name = "Anna Absi", email = "[email protected]"},
{name = "mrteathyme"},
{name = "Joe Stanley", email = "[email protected]"}
]
maintainers = [
{name = "Pablo Diaz"}
]
license = {file = "LICENSE"}
home-page = "https://github.com/pablodz/pipewire_python"
requires-python = ">=3.7"
description = "Python controller, player and recorder via pipewire's commands"
readme = "README.md"
classifiers = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Multimedia :: Sound/Audio :: Capture/Recording",
"Topic :: Multimedia :: Sound/Audio :: Players",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dynamic = ["version"]
[project.urls]
Home = "https://github.com/pablodz/pipewire_python"
Documentation = "https://pablodz.github.io/pipewire_python/html/pipewire_python.html"