-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
50 lines (47 loc) · 1.42 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
41
42
43
44
45
46
47
48
49
50
from distutils.core import setup, Extension
version = '0.4.2'
kwargs = dict()
setup(
#-- Package description
name = 'alsaseq',
version = version,
description = 'ALSA sequencer bindings for Python',
author = 'Patricio Paez',
author_email = 'pp@pp.com.mx',
url = 'http://pp.com.mx/python/alsaseq/',
license = 'GNU GPL v2 or later',
#-- C extension modules
ext_modules = [
Extension(
'alsaseq',
[
'alsaseq.c',
],
libraries = ['asound'],
),
],
#-- Python "stand alone" modules
py_modules = [
'alsamidi',
'midiinstruments',
],
data_files = [ ( 'share/alsaseq-' + version, [ 'COPYING',
'CHANGELOG', 'README', 'CREDITS', 'doc/project.html',
'doc/project.rst'] ) ],
platforms = ['linux'],
long_description='''alsaseq is a Python 3 and Python 2 module that allows to interact with ALSA
sequencer clients. It can create an ALSA client, connect to other
clients, send and receive ALSA events immediately or at a scheduled
time using a sequencer queue. It provides a subset of the ALSA
sequencer capabilities in a simplified model. It is implemented in
C language and licensed under the Gnu GPL license version 2 or
later.''',
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Multimedia :: Sound/Audio :: MIDI",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
],
package_dir = {'': '.',},
**kwargs
)