~chris.lasher/friendfeed-pyapi/0.1.0

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python

from distutils.core import setup

setup(
        name='FriendFeed PyAPI',
        version='0.1.1',
        description='A Python interface to the FriendFeed API.',
        author='Chris Lasher',
        author_email='chris.lasher@gmail.com',
        license='Apache',
        url='https://launchpad.net/friendfeed-pyapi',
        py_modules=['friendfeed']
        )