comparison setup.py @ 0:56a9fb9ad9b4

initial commit of bitsytweet (not yet functional)
author Jeff Hammel <jhammel@mozilla.com>
date Wed, 07 Jul 2010 13:31:37 -0700
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:56a9fb9ad9b4
1 from setuptools import setup, find_packages
2
3 version = '0.0'
4
5 setup(name='bitsytweet',
6 version=version,
7 description="tweet your bitsyblog posts",
8 long_description="""\
9 """,
10 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
11 keywords='twitter blog microblog bitsyblog',
12 author='Jeff Hammel',
13 author_email='k0scist@gmail.com',
14 url='http://k0s.org/',
15 license='GPL',
16 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
17 include_package_data=True,
18 zip_safe=False,
19 install_requires=[
20 # -*- Extra requirements: -*-
21 'python-twitter',
22 ],
23 entry_points="""
24 # -*- Entry points: -*-
25 [bitsyblog.listeners]
26 bitsytweet = bitsytweet:BitsyTweet
27 """,
28 )