-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (43 loc) · 1.53 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
import os
from setuptools import setup
__version__ = 'unknown'
# "import" __version__
dirname = os.path.dirname(__file__)
for line in open(os.path.join(dirname, 'src', 'pastream.py')):
if line.startswith('__version__'):
exec(line)
break
setup(name='pastream',
version=__version__,
package_dir={'': 'src'},
py_modules=['pastream'],
author='Thomas J. Garcia',
url='http://github.com/tgarc/pastream',
platforms='any',
license='MIT',
author_email='[email protected]',
description="GIL-less Portaudio Streams for Python",
long_description=open(os.path.join(dirname, 'README.rst')).read(),
entry_points={'console_scripts': ['pastream = pastream:_main']},
cffi_modules=["build_pastream.py:ffibuilder"],
setup_requires=open(os.path.join(dirname, 'setup-requirements.txt')).readlines(),
install_requires=[
'pa_ringbuffer>=0.1.2',
'cffi>=1.0.0',
'soundfile>=0.9.0',
'sounddevice>=0.3.9',
],
tests_require=open(os.path.join(dirname, 'tests', 'requirements.txt')).readlines(),
extras_require={
'numpy': 'numpy',
},
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Multimedia :: Sound/Audio'
],
include_package_data=False,
zip_safe=False)