From de86233ec9ba0a8660dcea9608f32a3d290ce8ca Mon Sep 17 00:00:00 2001 From: Tibor Simko Date: Sun, 25 Sep 2016 13:32:28 +0200 Subject: [PATCH] docs: move to readthedocs.io Signed-off-by: Tibor Simko --- MANIFEST.in | 1 + README.rst | 6 +++--- RELEASE-NOTES.rst | 2 +- docs/requirements.txt | 1 + requirements.py | 2 +- 5 files changed, 7 insertions(+), 5 deletions(-) create mode 100644 docs/requirements.txt diff --git a/MANIFEST.in b/MANIFEST.in index 6ab3d52..a32c3e6 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -27,6 +27,7 @@ include *.py include *.rst include *.txt include .editorconfig .dockerignore .travis.yml +include docs/requirements.txt include LICENSE include pytest.ini include tox.ini diff --git a/README.rst b/README.rst index 9f788c3..2d77511 100644 --- a/README.rst +++ b/README.rst @@ -44,7 +44,7 @@ Invenio module for OAI-PMH metadata harvesting between repositories. * Free software: GPLv2 license -* Documentation: https://pythonhosted.org/invenio-oaiharvester/ +* Documentation: https://invenio-oaiharvester.readthedocs.io/ *This is an experimental development preview release.* @@ -57,5 +57,5 @@ you can hook the output into your application, or simply to files. You keep configurations of your OAI-PMH sources via SQLAlchemy models and run or schedule immediate harvesting jobs via command-line or regularly via `Celery beat`_. -.. _Celery beat: http://celery.readthedocs.org/en/latest/userguide/periodic-tasks.html -.. _Sickle: http://sickle.readthedocs.org/en/latest/ +.. _Celery beat: http://celery.readthedocs.io/en/latest/userguide/periodic-tasks.html +.. _Sickle: http://sickle.readthedocs.io/en/latest/ diff --git a/RELEASE-NOTES.rst b/RELEASE-NOTES.rst index 06b9259..0b6d2f9 100644 --- a/RELEASE-NOTES.rst +++ b/RELEASE-NOTES.rst @@ -29,7 +29,7 @@ Installation Documentation ------------- - http://pythonhosted.org/invenio-oaiharvester/ + http://invenio-oaiharvester.readthedocs.io/ Happy hacking and thanks for flying Invenio-OAIHarvester. diff --git a/docs/requirements.txt b/docs/requirements.txt new file mode 100644 index 0000000..c037791 --- /dev/null +++ b/docs/requirements.txt @@ -0,0 +1 @@ +-e .[docs,tests] diff --git a/requirements.py b/requirements.py index 2d543de..5fb2547 100755 --- a/requirements.py +++ b/requirements.py @@ -69,7 +69,7 @@ def parse_pip_file(path): for line in f: line = line.strip() - # see https://pip.readthedocs.org/en/1.1/requirements.html + # see https://pip.readthedocs.io/en/1.1/requirements.html if line.startswith('-e'): # devel requirement splitted = line.split('#egg=')