diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-04-01 17:01:51 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-04-01 17:01:51 -0400 |
commit | c5189c3992f32dcabf5cb294340bf4cad294de23 (patch) | |
tree | 865b9a27064f7b9d3c4d3f852a8f96e84977e682 | |
parent | d0620ffb8dbc53ac6089aead179a1fabed4e50e3 (diff) | |
download | external_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-- | .gitignore | 1 | ||||
-rw-r--r-- | .hgignore | 1 | ||||
-rw-r--r-- | CHANGES.rst (renamed from CHANGES.txt) | 0 | ||||
-rwxr-xr-x | README.rst (renamed from README.txt) | 0 | ||||
-rw-r--r-- | docs/conf.py | 2 | ||||
-rw-r--r-- | docs/developer-guide.txt | 2 | ||||
-rw-r--r-- | docs/history.txt | 2 | ||||
-rwxr-xr-x | setup.py | 2 |
8 files changed, 4 insertions, 6 deletions
@@ -8,7 +8,6 @@ distribute.egg-info setuptools.egg-info .coverage .tox -CHANGES (links).txt *.egg *.py[cod] *.swp @@ -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/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 @@ -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() |