forked from salimfadhley/soundcloud-python-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (44 loc) · 1.23 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
import re
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup
version = None
for line in open('./soundcloud/__init__.py'):
m = re.search('__version__\s*=\s*(.*)', line)
if m:
version = m.group(1).strip()[1:-1] # quotes
break
assert version
setup(
name='soundcloud',
version=version,
description='A friendly wrapper library for the Soundcloud API',
author='Paul Osman',
author_email='[email protected]',
url='https://github.com/soundcloud/soundcloud-python',
license='BSD',
packages=['soundcloud'],
include_package_data=True,
use_2to3=True,
package_data={
'': ['README.rst']
},
install_requires=[
'fudge==1.0.3',
'requests>=0.14.0',
'simplejson>=2.0',
],
tests_require=[
'nose>=1.1.2',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet',
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)