Mercurial > feed2twitter
comparison rss2twitter/setup.py @ 1:0dbf81b8a8f4
project skeleton
author | waltercruz |
---|---|
date | Mon, 12 May 2008 17:42:42 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
0:5ceab5c43f9f | 1:0dbf81b8a8f4 |
---|---|
1 from setuptools import setup, find_packages | |
2 import sys, os | |
3 | |
4 version = '0.1' | |
5 | |
6 setup(name='rss2twitter', | |
7 version=version, | |
8 description="Publish your feed items to twitter", | |
9 long_description="""\ | |
10 """, | |
11 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers | |
12 keywords='', | |
13 author='Walter Cruz', | |
14 author_email='walte@waltercruz.com', | |
15 url='', | |
16 license='', | |
17 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | |
18 include_package_data=True, | |
19 zip_safe=True, | |
20 install_requires=[ | |
21 # -*- Extra requirements: -*- | |
22 ], | |
23 entry_points=""" | |
24 # -*- Entry points: -*- | |
25 """, | |
26 ) |