-
Notifications
You must be signed in to change notification settings - Fork 70
/
setup.py
33 lines (32 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
from setuptools import setup
setup(
name='SoundCard',
version='0.4.3',
description='Play and record audio without resorting to CPython extensions',
author='Bastian Bechtold',
url='https://github.com/bastibe/SoundCard',
license='BSD 3-clause',
packages=['soundcard', 'soundcard.__pyinstaller'],
package_data={'soundcard': ['*.py.h']},
install_requires=['numpy', 'cffi'],
python_requires='>=3.5',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Multimedia :: Sound/Audio :: Capture/Recording',
'Topic :: Multimedia :: Sound/Audio :: Players',
],
long_description=open('README.rst').read(),
long_description_content_type='text/x-rst',
entry_points={
"pyinstaller40": [
"hook-dirs = soundcard.__pyinstaller:get_hook_dirs",
"tests = soundcard.__pyinstaller:get_test_dirs",
],
},
)