soundcloud python/php apis, recorder python script so far.

This commit is contained in:
Naomi 2011-03-05 11:53:29 -05:00
parent b3e111b0a0
commit f68a8f67ea
109 changed files with 24297 additions and 10 deletions

View file

@ -0,0 +1,22 @@
from setuptools import setup, find_packages
TEST_REQUIRES = ["ConfigObj>=4.5.3", "nose>=0.10"]
setup(
name = "SoundCloudAPI",
version = "0.1",
packages = find_packages(),
author = "Diez B. Roggisch",
author_email = "deets@web.de",
description = "This is an implementation of the SoundCloud RESTful API",
license = "MIT",
keywords = "Soundcloud client API REST",
url = "http://wiki.github.com/soundcloud/api/python-api-wrapper/",
install_requires = ['simplejson'] + TEST_REQUIRES,
# tests_require = TEST_REQUIRES,
# extras_require = dict(
# test = TEST_REQUIRES
# ),
test_suite = 'nose.collector'
)