public
Description: A twisted client for twitter-like APIs.
Homepage:
Clone URL: git://github.com/dustin/twitty-twister.git
twitty-twister / setup.py
100644 15 lines (12 sloc) 0.348 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from distutils.core import setup
 
setup(name='twittytwister',
    version='0.1',
    description='Twitter client for Twisted Python',
    author='Dustin Sallings',
    author_email='dustin@spy.net',
    url='http://github.com/dustin/twitty-twister/',
    license='MIT',
    platforms='any',
    packages=['twittytwister'],
)
 
# vim: set expandtab: