-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
25 lines (25 loc) · 919 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
from distutils.core import setup
setup(
name = 'pywav',
packages = ['pywav'],
version = '0.1',
license='GPL',
description = 'Read and write wav files',
author = 'Saisyam Dampuri',
author_email = 'saisyam@saisyam.com',
url = 'https://github.com/saisyam/pywav',
download_url = 'https://github.com/saisyam/pywav/archive/ver_01.tar.gz',
keywords = ['wave', 'wav read', 'wav write'],
install_requires=[],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)