view setup.py @ 8:76b8f41da4cf default tip

note link to page
author Jeff Hammel <jhammel@mozilla.com>
date Thu, 25 Nov 2010 13:48:58 -0800
parents 56a9fb9ad9b4
children
line wrap: on
line source

from setuptools import setup, find_packages

version = '0.0'

setup(name='bitsytweet',
      version=version,
      description="tweet your bitsyblog posts",
      long_description="""\
""",
      classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
      keywords='twitter blog microblog bitsyblog',
      author='Jeff Hammel',
      author_email='k0scist@gmail.com',
      url='http://k0s.org/',
      license='GPL',
      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
      include_package_data=True,
      zip_safe=False,
      install_requires=[
          # -*- Extra requirements: -*-
        'python-twitter',
      ],
      entry_points="""
      # -*- Entry points: -*-
      [bitsyblog.listeners]
      bitsytweet = bitsytweet:BitsyTweet
      """,
      )