Skip to content

Commit

Permalink
even more doc tweaks
Browse files Browse the repository at this point in the history
Get the RTD links back into the long_description.

Done for now?
  • Loading branch information
Joel Baxter committed Nov 19, 2013
1 parent 1d0f23f commit 3698585
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 9 deletions.
2 changes: 1 addition & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Changelog for expak
Changelog
===================

- **0.9** (2013-11-19)
Expand Down
2 changes: 2 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,5 @@ Documentation

.. _expak module: http://expak.readthedocs.org/en/latest/expak.html
.. _simple expak utility: http://expak.readthedocs.org/en/latest/simple_expak.html


8 changes: 1 addition & 7 deletions README.rst.in
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,5 @@ available among the `downloads for expak`_ at the Python Package Index (PyPI)
.. _pip: http://www.pip-installer.org/en/latest
.. _downloads for expak: https://pypi.python.org/pypi/expak#downloads

Documentation
=============
.. include:: docs/rtdlinks.txt

- `expak module`_
- `simple expak utility`_

.. _expak module: http://expak.readthedocs.org/en/latest/expak.html
.. _simple expak utility: http://expak.readthedocs.org/en/latest/simple_expak.html
8 changes: 8 additions & 0 deletions docs/rtdlinks.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Documentation
=============

- `expak module`_
- `simple expak utility`_

.. _expak module: http://expak.readthedocs.org/en/latest/expak.html
.. _simple expak utility: http://expak.readthedocs.org/en/latest/simple_expak.html
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ def find_version(*file_paths):
return version_match.group(1)
raise RuntimeError("Unable to find version string.")

long_description = read('docs', 'blurb.txt') + '\n\n' + read('HISTORY.rst')
long_description = '\n\n'.join([read('docs', 'blurb.txt'),
read('docs', 'rtdlinks.txt'),
read('HISTORY.rst')])

class PyTest(TestCommand):
def finalize_options(self):
Expand Down

0 comments on commit 3698585

Please sign in to comment.