Skip to content

Commit

Permalink
Rename *.txt to *.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Nov 5, 2015
1 parent b96f4fc commit 9ced395
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 6 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions MANIFEST.in
@@ -1,9 +1,9 @@
include *.rst
include *.txt
include *.py
include buildout.cfg
include tox.ini
include .coveragerc

recursive-include src *
recursive-include src *.rst *.csv

global-exclude *.pyc
File renamed without changes.
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -26,14 +26,14 @@ def read(*rnames):
author_email = "zope-dev@zope.org",
description = "A package to create vocabularies based on CSV files.",
long_description=(
read('README.txt')
read('README.rst')
+ '\n' +
'Detailed Documentation\n'
'**********************\n'
+ '\n' +
read('src', 'z3c', 'csvvocabulary', 'README.txt')
read('src', 'z3c', 'csvvocabulary', 'README.rst')
+ '\n' +
read('CHANGES.txt')
read('CHANGES.rst')
),
license = "ZPL 2.1",
keywords = "zope3 vocabulary csv",
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/z3c/csvvocabulary/tests.py
Expand Up @@ -32,7 +32,7 @@
def test_suite():
return unittest.TestSuite([
doctest.DocFileSuite(
'README.txt',
'README.rst',
optionflags=doctest.NORMALIZE_WHITESPACE | doctest.ELLIPSIS,
globs={'pprint': pprint},
checker=checker,
Expand Down

0 comments on commit 9ced395

Please sign in to comment.