Skip to content

Commit a30afea

Browse files
committed
Rename README.mkd to README.md; #47
This should trigger formatting on PyPI as well as GitHub.
1 parent d38ab43 commit a30afea

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

MANIFEST.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
include README.mkd
1+
include README.md
22
include requirements.txt
33
include test-requirements.txt

README.mkd renamed to README.md

File renamed without changes.

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Balanced Python client library.
33
4-
See ``README.mkd`` for usage advice.
4+
See ``README.md`` for usage advice.
55
"""
66
import os
77
import pickle
@@ -73,7 +73,7 @@ def _get_version():
7373

7474

7575
def _get_long_description():
76-
path = os.path.join(PATH_TO_FILE, 'README.mkd')
76+
path = os.path.join(PATH_TO_FILE, 'README.md')
7777
fo = open(path)
7878
try:
7979
return fo.read()

0 commit comments

Comments
 (0)