-
Notifications
You must be signed in to change notification settings - Fork 36
/
setup.py
40 lines (33 loc) · 1.17 KB
/
setup.py
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
from setuptools import setup, find_packages
import os, sys
# Error-handling here is to allow package to be built w/o README included
try:
readme = open(os.path.join(
os.path.dirname(__file__), 'README.rst' )).read()
except IOError: readme = ''
setup(
name = 'pulsectl',
version = '24.11.0',
author = 'George Filipkin, Mike Kazantsev',
author_email = '[email protected]',
license = 'MIT',
keywords = [
'pulseaudio', 'libpulse', 'pulse', 'pa', 'bindings', 'sound', 'audio',
'ctypes', 'control', 'mixer', 'volume', 'mute', 'source', 'sink' ],
url = 'http://github.com/mk-fg/python-pulse-control',
description = 'Python high-level interface'
' and ctypes-based bindings for PulseAudio (libpulse)',
long_description = readme,
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Multimedia',
'Topic :: Multimedia :: Sound/Audio' ],
packages = find_packages(),
include_package_data = True )