forked from joelbarmettlerUZH/AudioRec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 949 Bytes
/
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
from distutils.core import setup
setup(
name = 'AudioRec',
packages = ['AudioRec'],
version = '0.1',
license='MIT',
description = 'Audio Recorder for python that lets you record WAV and MP3 Files from any input source',
author = 'Joel Barmettler',
author_email = '[email protected]',
url = 'https://github.com/joelbarmettlerUZH/AudioRec',
download_url = 'https://github.com/joelbarmettlerUZH/AudioRec/archive/v_02.tar.gz',
keywords = ['Audio', 'Recording', 'Sound', 'music'],
install_requires=[
'pyaudio',
'wave',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)