File: setup.py

package info (click to toggle)
alsaplayer 0.99.82-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,892 kB
  • sloc: ansic: 40,741; cpp: 14,400; makefile: 983; sh: 796; lex: 751; asm: 45; python: 29; sed: 16
file content (34 lines) | stat: -rw-r--r-- 1,138 bytes parent folder | download | duplicates (2)
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
#!/usr/bin/env python

from distutils.core import setup, Extension

long_description='''
A set of python bindings for the alsaplayer libraries. These are written in
C++ using boost.python and are intended to provide a minimal level of
abstraction over the C libraries. Higher-level abstractions and functionality
can then be written purely in python.
'''

classifiers=[
    'Development Status :: 4 - Beta',
    'Intended Audience :: Developers',
    'License :: OSI Approved :: GNU Public License',
    'Programming Language :: C++'
    ]

setup(name='python_alsaplayer',
      version='0.3.1',
      description='Python extension for alsaplayer',
      author='Austin Bingham',
      author_email='austin.bingham@gmail.com',
      url='http://www.alsaplayer.org',
      license='gpl',
      long_description=long_description,
      classifiers=classifiers,
      ext_modules=[Extension('alsaplayer',
                             ['control.cc'],
                             include_dirs=[],
                             library_dirs=[],
                             libraries=['alsaplayer', 'boost_python'])
                   ]
     )