forked from salimfadhley/soundcloud-python-1
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
45 lines (41 loc) · 1.15 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
import re
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='SoundCloud',
author_email='[email protected]',
url='https://github.com/soundcloud/soundcloud-python',
license='BSD',
packages=['soundcloud'],
include_package_data=True,
package_data={
'': ['README.rst']
},
install_requires=[
'requests>=0.14.0',
'simplejson>=2.0',
],
tests_require=[
'nose>=1.1.2',
'fudge>=1.0.3',
],
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',
]
)