This repository has been archived by the owner on Dec 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
49 lines (43 loc) · 1.59 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
import os
from setuptools import find_packages, setup
# directory = os.path.abspath(os.path.dirname(__file__))
"""
with open(os.path.join(directory, 'README.rst')) as f:
long_description = f.read()
"""
setup(
name="microphone",
version='0.3.1',
description='Sending microphone data using ZeroMQ',
# long_description=long_description,
url='https://github.com/benhoff/microphone',
license='GPL3',
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Topic :: Multimedia :: Sound/Audio :: Capture/Recording',
'Topic :: Utilities',
'Operating System :: OS Independent'],
keywords='sound capture to text',
author='Ben Hoff',
author_email='[email protected]',
package_data={'microphone':['resources/congo.wav',
'resources/done.wav',
'default_settings.ini',]},
entry_points={'microphone.audioengines': ['pyaudio = microphone.pyaudio_:PyAudio',],
'console_scripts': ['microphone-python = microphone.__main__:main'],
'vexbot.adapters': ['microphone = microphone.__main__']},
packages= find_packages(), # exclude=['docs', 'tests']
install_requires=[
'pluginmanager>=0.4.1',
'PyAudio',
'pyzmq',
'vexmessage',
],
extras_require={
'dev': ['flake8', 'wheel', 'twine']
},
)