script/lib/tweetstream/setup.py
author Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com>
Tue, 18 Jan 2011 18:25:18 +0100
changeset 12 4daf47fcf792
child 13 79b6e132e3d7
permissions -rw-r--r--
move lib and prepare tweetstream for modification

from setuptools import setup, find_packages
import sys, os

author = "Rune Halvorsen" 
email = "runefh@gmail.com"
version = "0.3.5"
homepage = "http://bitbucket.org/runeh/tweetstream/"

setup(name='tweetstream',
    version=version,
    description="Simple Twitter streaming API access",
    long_description=open("README").read(),
    classifiers=[
        'License :: OSI Approved :: BSD License',
        'Intended Audience :: Developers',
    ],
    keywords='twitter',
    author=author,
    author_email=email,
    url=homepage,
    license='BSD',
    packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
    include_package_data=True,
    zip_safe=False,
    platforms=["any"],
    install_requires = ['anyjson'],
)