Skip to content

Commit

Permalink
Change all uses of .txt to .rst.
Browse files Browse the repository at this point in the history
Fixes #20
  • Loading branch information
Matěj Cepl committed May 23, 2014
1 parent 6f4ee97 commit ec11e7d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions MANIFEST.in
@@ -1,5 +1,5 @@
include README.txt COPYING setup.py MANIFEST.in CONTRIBUTORS
include README.rst COPYING setup.py MANIFEST.in CONTRIBUTORS
recursive-include ropemacs *.py
recursive-include ropemode *.py
recursive-include docs *.txt
recursive-include docs *.rst
recursive-include docs *.patch
File renamed without changes.
File renamed without changes.
File renamed without changes.
5 changes: 3 additions & 2 deletions setup.py
Expand Up @@ -6,7 +6,7 @@
from distutils.core import setup


classifiers=[
classifiers = [
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Environment :: X11 Applications',
Expand All @@ -19,8 +19,9 @@
'Topic :: Text Editors :: Emacs',
'Topic :: Software Development']


def get_long_description():
lines = open('README.txt').read().splitlines(False)
lines = open('README.rst').read().splitlines(False)
end = lines.index('Setting Up')
return '\n' + '\n'.join(lines[:end]) + '\n'

Expand Down

0 comments on commit ec11e7d

Please sign in to comment.