forked from bastibe/SoundCard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (34 loc) · 1.26 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
from setuptools import setup
setup(
name='SoundCard',
version='0.4.0',
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 :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Multimedia :: Sound/Audio :: Capture/Recording',
'Topic :: Multimedia :: Sound/Audio :: Players',
],
long_description=open('README.rst').read(),
entry_points={
"pyinstaller40": [
"hook-dirs = soundcard.__pyinstaller:get_hook_dirs",
"tests = soundcard.__pyinstaller:get_test_dirs",
],
},
)