Mercurial > hg > bitsyblog
comparison setup.py @ 85:f7c6fbce7c9b
version bump
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Thu, 17 Nov 2011 13:19:45 -0800 |
parents | b97d11e2cf41 |
children | 7f7f7313b4c4 |
comparison
equal
deleted
inserted
replaced
84:e5a23f5ea14e | 85:f7c6fbce7c9b |
---|---|
1 from setuptools import setup, find_packages | 1 from setuptools import setup, find_packages |
2 import sys, os | 2 import sys, os |
3 | 3 |
4 version = '2.3.2' | 4 version = '2.4' |
5 | 5 |
6 try: | 6 try: |
7 description = file('README.txt').read() | 7 description = file('README.txt').read() |
8 except IOError: | 8 except IOError: |
9 description = """ | 9 description = """ |
10 Meet bitsyblog. Posting is done with a POST request, so while you can use | 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 | 11 a web form to do this, its just as easy to use curl, urllib, or anything else |
12 to post. | 12 to post. |
13 """ | 13 """ |
14 | 14 |
15 setup(name='bitsyblog', | 15 setup(name='bitsyblog', |
16 version=version, | 16 version=version, |
35 'docutils', | 35 'docutils', |
36 'genshi', | 36 'genshi', |
37 'bitsyauth' | 37 'bitsyauth' |
38 # 'lxml', | 38 # 'lxml', |
39 ], | 39 ], |
40 dependency_links=[ | 40 dependency_links=[ |
41 'http://svn.pythonpaste.org/Paste/trunk#egg=Paste', | 41 'http://svn.pythonpaste.org/Paste/trunk#egg=Paste', |
42 'http://www.dalkescientific.com/Python/PyRSS2Gen-1.0.0.tar.gz#egg=PyRSS2Gen' | 42 'http://www.dalkescientific.com/Python/PyRSS2Gen-1.0.0.tar.gz#egg=PyRSS2Gen' |
43 ], | 43 ], |
44 entry_points=""" | 44 entry_points=""" |
45 # -*- Entry points: -*- | 45 # -*- Entry points: -*- |