Use MD file instead of TXT

This commit is contained in:
Patrick McDonagh
2017-06-29 18:11:06 -05:00
parent b500baeaf1
commit 13835dcfa4
2 changed files with 1 additions and 1 deletions

View File

@@ -3,7 +3,7 @@ import os
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.md')) as f:
README = f.read()
with open(os.path.join(here, 'CHANGES.txt')) as f:
CHANGES = f.read()