Browse Source

Renamed README -> README.md.

pitchum 7 years ago
parent
commit
d6f17f6b78
3 changed files with 2 additions and 2 deletions
  1. 1 1
      MANIFEST.in
  2. 0 0
      README.md
  3. 1 1
      setup.py

+ 1 - 1
MANIFEST.in

@@ -1,4 +1,4 @@
 include LICENSE
-include README
+include README.md
 recursive-include ispformat/schema *
 recursive-include ispformat/specs *

README → README.md


+ 1 - 1
setup.py

@@ -5,7 +5,7 @@ from setuptools import setup
 PKG_NAME = 'ispformat'
 VERSION = __import__(PKG_NAME).__version__
 
-README = open(os.path.join(os.path.dirname(__file__), 'README')).read()
+README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
 
 # allow setup.py to be run from any path
 os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))