https://github.com/netiru/apiblender
Raw File
Tip revision: 55712ff81ae04bd9f5802cfc519f82ecbe2dacdf authored by Pierre Senelart on 17 September 2015, 20:34:01 UTC
Support for Facebook API v2.4
Tip revision: 55712ff
setup.py
from distutils.core import setup

setup(  name='apiblender',
        version='0.7',
        description='API Blender allows you to easily interact with many APIs',
        author='Georges Gouriten',
        author_email='georges.gouriten@gmail.com',
        url='http://github.com/netiru/apiblender',
        packages=['apiblender'],
        package_data={'apiblender': [   'config/*.json', 
                                        'config/apis/*.json',
                                        'config/apis/auth/*.example']},
        requires = ['oauth2', 'xmltodict'],
        license = "GNU/GPL v3 License",
        keywords="api"    )

back to top