Skip to content

Commit 2444f4d

Browse files
committed
setup: add some missing fields, add header files from pyalsa to MANIFEST
Signed-off-by: Jaroslav Kysela <[email protected]>
1 parent 88d424e commit 2444f4d

File tree

2 files changed

+13
-8
lines changed

2 files changed

+13
-8
lines changed

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
include pyalsa/*.h
12
include test/*.py
23
include utils/*.py

setup.py

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@
2626
setup(
2727
name='pyalsa',
2828
version=VERSION,
29+
description="Python binding for the ALSA library.",
30+
url="http://www.alsa-project.org",
31+
download_url="ftp://ftp.alsa-project.org/pub/pyalsa/",
32+
licence="LGPLv2+",
2933
author="The ALSA Team",
3034
author_email='[email protected]',
3135
ext_modules=[
@@ -54,17 +58,17 @@
5458
include_dirs=[],
5559
library_dirs=[],
5660
libraries=['asound']),
57-
],
58-
packages=['pyalsa'],
59-
scripts=[]
61+
],
62+
packages=['pyalsa'],
63+
scripts=[]
6064
)
6165

6266
SOFILES = [
63-
'alsacard',
64-
'alsacontrol',
65-
'alsahcontrol',
66-
'alsamixer',
67-
'alsaseq'
67+
'alsacard',
68+
'alsacontrol',
69+
'alsahcontrol',
70+
'alsamixer',
71+
'alsaseq'
6872
]
6973

7074
uname = os.uname()

0 commit comments

Comments
 (0)