Merge pull request #21 from laurentb/packaging

Packaging fixes
This commit is contained in:
Jakub Roztocil 2012-03-04 07:35:24 -08:00
commit f995c61892
2 changed files with 4 additions and 8 deletions

1
MANIFEST.in Normal file
View File

@ -0,0 +1 @@
include README.md

View File

@ -14,16 +14,11 @@ if sys.version_info < (2, 7):
requirements.append('argparse>=1.2.1')
try:
long_description = open('README.md').read()
except IOError:
long_description = ''
setup(
name='httpie',version=httpie.__version__,
name='httpie',
version=httpie.__version__,
description=httpie.__doc__.strip(),
long_description=long_description,
long_description=open('README.md').read(),
url='http://httpie.org/',
download_url='https://github.com/jkbr/httpie',
author=httpie.__author__,