Mercurial > hg > bitsyblog
comparison setup.py @ 0:e3823be6a423
initial commit of bitsyblog, from https://svn.openplans.org/svn/standalone/bitsyblog/trunk/
| author | k0s <k0scist@gmail.com> |
|---|---|
| date | Sat, 12 Sep 2009 16:06:57 -0400 |
| parents | |
| children | 2d69b26144b4 |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:e3823be6a423 |
|---|---|
| 1 from setuptools import setup, find_packages | |
| 2 import sys, os | |
| 3 | |
| 4 version = '1.1.1' | |
| 5 | |
| 6 try: | |
| 7 description = file('README.txt').read() | |
| 8 except IOError: | |
| 9 description = """ | |
| 10 Meet bitsyblog. Posting is done with a POST request, so while you can use | |
| 11 a web form to do this, its just as easy to use curl, urllib, or anything else | |
| 12 to post. | |
| 13 """ | |
| 14 | |
| 15 setup(name='bitsyblog', | |
| 16 version=version, | |
| 17 description="a tiny tiny blog", | |
| 18 long_description=description, | |
| 19 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers | |
| 20 keywords='blog', | |
| 21 author='Jeff Hammel', | |
| 22 author_email='jhammel@openplans.org', | |
| 23 url='http://bitsyblog.biz', | |
| 24 license='GPL', | |
| 25 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | |
| 26 include_package_data=True, | |
| 27 zip_safe=False, | |
| 28 install_requires=[ | |
| 29 # -*- Extra requirements: -*- | |
| 30 'WebOb', | |
| 31 'Paste', | |
| 32 'PasteScript', | |
| 33 'dateutil', | |
| 34 'markup', | |
| 35 'skimpygimpy', | |
| 36 'lxml', | |
| 37 'PyRSS2Gen' | |
| 38 ], | |
| 39 dependency_links=[ | |
| 40 'https://svn.openplans.org/svn/standalone/markup#egg=markup', | |
| 41 'http://svn.pythonpaste.org/Paste/trunk#egg=Paste', | |
| 42 'http://downloads.sourceforge.net/skimpygimpy/skimpyGimpy_1_3.zip#egg=skimpygimpy', | |
| 43 'http://www.dalkescientific.com/Python/PyRSS2Gen-1.0.0.tar.gz#egg=PyRSS2Gen' | |
| 44 ], | |
| 45 entry_points=""" | |
| 46 # -*- Entry points: -*- | |
| 47 [paste.app_factory] | |
| 48 main = bitsyblog.factory:factory | |
| 49 """, | |
| 50 ) |
