Fix packaging and use of README file

This commit is contained in:
Chris Dent 2016-09-27 10:55:45 +01:00
parent 7a0851f738
commit 4d3901a5bc
1 changed files with 2 additions and 3 deletions

View File

@ -1,8 +1,7 @@
from setuptools import setup, find_packages
VERSION = '1.4.0'
README = open('README.rst').read()
VERSION = '1.4.1'
CLASSIFIERS = """
Environment :: Web Environment
@ -30,7 +29,7 @@ META = {
'real URI for testing.',
# What will the name be?
'url': 'http://pypi.python.org/pypi/wsgi_intercept',
'long_description': README,
'long_description': open('README').read(),
'license': 'MIT License',
'classifiers': CLASSIFIERS,
'packages': find_packages(),