aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-04-01 17:01:51 -0400
committerJason R. Coombs <jaraco@jaraco.com>2016-04-01 17:01:51 -0400
commitc5189c3992f32dcabf5cb294340bf4cad294de23 (patch)
tree865b9a27064f7b9d3c4d3f852a8f96e84977e682
parentd0620ffb8dbc53ac6089aead179a1fabed4e50e3 (diff)
downloadexternal_python_setuptools-c5189c3992f32dcabf5cb294340bf4cad294de23.tar.gz
external_python_setuptools-c5189c3992f32dcabf5cb294340bf4cad294de23.tar.bz2
external_python_setuptools-c5189c3992f32dcabf5cb294340bf4cad294de23.zip
Rename CHANGES and README files for nicer rendering on Github.
-rw-r--r--.gitignore1
-rw-r--r--.hgignore1
-rw-r--r--CHANGES.rst (renamed from CHANGES.txt)0
-rwxr-xr-xREADME.rst (renamed from README.txt)0
-rw-r--r--docs/conf.py2
-rw-r--r--docs/developer-guide.txt2
-rw-r--r--docs/history.txt2
-rwxr-xr-xsetup.py2
8 files changed, 4 insertions, 6 deletions
diff --git a/.gitignore b/.gitignore
index 05c0808d..4d77520f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -8,7 +8,6 @@ distribute.egg-info
setuptools.egg-info
.coverage
.tox
-CHANGES (links).txt
*.egg
*.py[cod]
*.swp
diff --git a/.hgignore b/.hgignore
index d70c9a7c..ebc53b33 100644
--- a/.hgignore
+++ b/.hgignore
@@ -8,7 +8,6 @@ distribute.egg-info
setuptools.egg-info
.coverage
.tox
-CHANGES (links).txt
*.egg
*.py[cod]
*.swp
diff --git a/CHANGES.txt b/CHANGES.rst
index dee622ac..dee622ac 100644
--- a/CHANGES.txt
+++ b/CHANGES.rst
diff --git a/README.txt b/README.rst
index f94c6fcb..f94c6fcb 100755
--- a/README.txt
+++ b/README.rst
diff --git a/docs/conf.py b/docs/conf.py
index 6877c5c0..f315e2b7 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -200,7 +200,7 @@ latex_documents = [
#latex_use_modindex = True
link_files = {
- 'CHANGES.txt': dict(
+ 'CHANGES.rst': dict(
using=dict(
BB='https://bitbucket.org',
GH='https://github.com',
diff --git a/docs/developer-guide.txt b/docs/developer-guide.txt
index c82adbb9..7cd3c6d2 100644
--- a/docs/developer-guide.txt
+++ b/docs/developer-guide.txt
@@ -69,7 +69,7 @@ If you want to contribute changes, we recommend you fork the repository on
Github, commit the changes to your repository, and then make a pull request
on Github. If you make some changes, don't forget to:
-- add a note in CHANGES.txt
+- add a note in CHANGES.rst
Please commit all changes in the 'master' branch against the latest available
commit or for bug-fixes, against an earlier commit or release in which the
diff --git a/docs/history.txt b/docs/history.txt
index 268137cd..8e217503 100644
--- a/docs/history.txt
+++ b/docs/history.txt
@@ -5,4 +5,4 @@
History
*******
-.. include:: ../CHANGES (links).txt
+.. include:: ../CHANGES (links).rst
diff --git a/setup.py b/setup.py
index 1aa31687..573fb595 100755
--- a/setup.py
+++ b/setup.py
@@ -43,7 +43,7 @@ def _gen_console_scripts():
console_scripts = list(_gen_console_scripts())
-readme_file = io.open('README.txt', encoding='utf-8')
+readme_file = io.open('README.rst', encoding='utf-8')
with readme_file:
long_description = readme_file.read()