Mercurial > hg > bitsyblog
comparison setup.py @ 107:c5b9c9ba42eb
py3
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Tue, 03 Nov 2020 08:09:56 -0800 |
parents | bc08a00a7d93 |
children |
comparison
equal
deleted
inserted
replaced
106:c7495fb71045 | 107:c5b9c9ba42eb |
---|---|
2 import sys, os | 2 import sys, os |
3 | 3 |
4 version = '2.4.5' | 4 version = '2.4.5' |
5 | 5 |
6 try: | 6 try: |
7 description = file('README.txt').read() | 7 description = open('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. |