summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorgoodwillcoding <goodwillcoding@webhippo.net>2014-06-01 19:31:20 -0700
committergoodwillcoding <goodwillcoding@webhippo.net>2014-06-01 19:31:20 -0700
commite2ec94f197f7e2a040091d661cc56496e6136eba (patch)
treef96a0f98ab883876418b85e4d2890d0287c93b52 /setup.py
parentc79c2d9f36f27abfa5e2a72e021298728734138d (diff)
downloadpyramid-e2ec94f197f7e2a040091d661cc56496e6136eba.tar.gz
pyramid-e2ec94f197f7e2a040091d661cc56496e6136eba.tar.bz2
pyramid-e2ec94f197f7e2a040091d661cc56496e6136eba.zip
fix inclusion of README.rst in the package description
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index c832d3fc8..d736dc38d 100644
--- a/setup.py
+++ b/setup.py
@@ -30,7 +30,7 @@ else:
here = os.path.abspath(os.path.dirname(__file__))
try:
- with open(os.path.join(here, 'README.txt')) as f:
+ with open(os.path.join(here, 'README.rst')) as f:
README = f.read()
with open(os.path.join(here, 'CHANGES.txt')) as f:
CHANGES = f.read()