Skip to content

Commit

Permalink
use .rst as the extension name of reStructuredText files; deprecate R…
Browse files Browse the repository at this point in the history
…EADME.txt
  • Loading branch information
soimort committed Sep 21, 2014
1 parent 46ef8af commit b8e0600
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 211 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ _*/
*.mpg
*.ts
*.webm
README.rst

*.DS_Store
*.swp
Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
include *.rst
include *.txt
include Makefile
include README.md
Expand Down
209 changes: 0 additions & 209 deletions README.txt

This file was deleted.

4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
import os, json, imp
here = os.path.abspath(os.path.dirname(__file__))
proj_info = json.loads(open(os.path.join(here, PROJ_METADATA), encoding='utf-8').read())
README = open(os.path.join(here, 'README.txt'), encoding='utf-8').read()
CHANGELOG = open(os.path.join(here, 'CHANGELOG.txt'), encoding='utf-8').read()
README = open(os.path.join(here, 'README.rst'), encoding='utf-8').read()
CHANGELOG = open(os.path.join(here, 'CHANGELOG.rst'), encoding='utf-8').read()
VERSION = imp.load_source('version', os.path.join(here, 'src/%s/version.py' % PACKAGE_NAME)).__version__

from setuptools import setup, find_packages
Expand Down

0 comments on commit b8e0600

Please sign in to comment.