-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (25 loc) · 854 Bytes
/
setup.py
File metadata and controls
30 lines (25 loc) · 854 Bytes
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
#!/usr/bin/env python
from distutils.core import setup
setup(
name = 'audiosocket',
version = '0.7',
author = 'anatoly techtonik',
author_email = 'techtonik@gmail.com',
description = 'Raw Audio Socket player in pure Python',
long_description = """
Implementation of Raw Audio Socket server spec in pure Python.
| Author: anatoly techtonik <techtonik@gmail.com>
| License: Public Domain (or MIT if a license is required)
http://code.google.com/p/rainforce/wiki/RawAudioSocket
""",
license = 'Public Domain',
url='http://bitbucket.org/techtonik/audiosocket',
classifiers=[
'License :: Public Domain',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Multimedia :: Sound/Audio',
],
py_modules=['audiosocket'],
)