Skip to content

Commit

Permalink
Split landing pages into dev and stable.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromekelleher committed Oct 29, 2015
1 parent 7c20678 commit 82ca4e8
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 9 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
include README.txt
include README.pypi.rst
include ez_setup.py
include LICENSE
include ga4gh/templates/*.html
23 changes: 23 additions & 0 deletions README.pypi.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@

.. image:: http://genomicsandhealth.org/files/logo_ga.png

==============================
GA4GH Reference Implementation
==============================

This is the GA4GH reference implementation.

Full documentation is available at `read-the-docs.org
<http://ga4gh-reference-implementation.readthedocs.org/en/stable>`_.

- For a quick start with the GA4GH API, please see our
`demo <http://ga4gh-reference-implementation.readthedocs.org/en/stable/demo.html>`_.
- To configure and deploy the GA4GH server in production
please see the
`installation
<http://ga4gh-reference-implementation.readthedocs.org/en/stable/installation.html>`_
page.
- If you would like to contribute to the project, please see the
`development
<http://ga4gh-reference-implementation.readthedocs.org/en/stable/development.html>`_
page.
18 changes: 10 additions & 8 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,24 +9,26 @@ GA4GH Reference Implementation
:alt: Join the chat at https://gitter.im/ga4gh/server
:target: https://gitter.im/ga4gh/server?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge

This is an early alpha of the GA4GH reference client
and server applications.
It is under heavy development, and many aspects of
This is the development version of the GA4GH reference implementation.
If you would like to install the stable version of the server, please
see the instructions on `the PyPI page <https://pypi.python.org/pypi/ga4gh>`_.

The server is currently under heavy development, and many aspects of
the layout and APIs will change as requirements are better understood.
If you would like to help, please check out our list of
`issues <https://github.com/ga4gh/server/issues>`_!

Full documentation is available at `read-the-docs.org
<http://ga4gh-reference-implementation.readthedocs.org/>`_.
The latest bleeding-edge documentation is available at `read-the-docs.org
<http://ga4gh-reference-implementation.readthedocs.org/en/develop>`_.

- For a quick start with the GA4GH API, please see our
`demo <http://ga4gh-reference-implementation.readthedocs.org/en/stable/demo.html>`_.
`demo <http://ga4gh-reference-implementation.readthedocs.org/en/develop/demo.html>`_.
- To configure and deploy the GA4GH server in production
please see the
`installation
<http://ga4gh-reference-implementation.readthedocs.org/en/stable/installation.html>`_
<http://ga4gh-reference-implementation.readthedocs.org/en/develop/installation.html>`_
page.
- If you would like to contribute to the project, please see the
`development
<http://ga4gh-reference-implementation.readthedocs.org/en/stable/development.html>`_
<http://ga4gh-reference-implementation.readthedocs.org/en/develop/development.html>`_
page.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def parseVersion(moduleFile):
match = re.findall("__version__ = '([^']+)'", s)
return match[0]

f = open("README.txt")
f = open("README.pypi.rst")
ga4ghReadme = f.read()
f.close()
ga4ghVersion = parseVersion("ga4gh/__init__.py")
Expand Down

0 comments on commit 82ca4e8

Please sign in to comment.