Skip to content

Commit

Permalink
Use .rst extention for CHANGES and README
Browse files Browse the repository at this point in the history
  • Loading branch information
elemoine committed Mar 5, 2015
1 parent 201e0ac commit e198417
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
from setuptools import setup, find_packages

here = os.path.abspath(os.path.dirname(__file__))
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:
with open(os.path.join(here, 'CHANGES.rst')) as f:
CHANGES = f.read()

requires = [
Expand Down

0 comments on commit e198417

Please sign in to comment.