Changeset 9635


Ignore:
Timestamp:
Feb 6, 2015, 4:37:45 PM (9 years ago)
Author:
steve
Message:

Adding in some extra doc files

Location:
trunk/anuga_core
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/anuga_core/INSTALL.rst

    r9627 r9635  
    11
    22
    3 .. image:: https://travis-ci.org/stoiver/anuga_core.svg?branch=master
    4     :target: https://travis-ci.org/stoiver/anuga_core
    5 
    6 
    7 ============
    83Installation
    94============
     
    149------------
    1510
    16 AnuGA is a python package with some C extensions (and an optional fortran extension). At present AnuGA has not been transported to python 3. We recommend using python 2.7.
     11AnuGA is a python package with some C extensions (and an optional fortran
     12extension). At present AnuGA has not been transported to python 3.
     13We recommend using python 2.7.
    1714
    18 If you have a python 2.7 environment with gcc and gfortran support, then you can use easy_install to install the latest release version of AnuGA.
     15If you have a python 2.7 environment with gcc and gfortran support,
     16then you can use easy_install to install the latest release
     17version of AnuGA.
    1918
    2019
     
    2221------------------
    2322
    24 A safe way to install AnuGA is to use a separate python environment to isolate it from the rest of your system. Miniconda provides such an environment.
     23A safe way to install AnuGA is to use a separate python environment
     24to isolate it from the rest of your system. Miniconda provides such
     25an environment.
    2526
    2627
  • trunk/anuga_core/README.rst

    r9627 r9635  
    1111--------------
    1212
    13 AnuGA (pronounced "AN uu GA") is open-source software for the simulation of
     13AnuGA (pronounced "AHNooGAH") is open-source software for the simulation of
    1414the shallow water equation, in particular it can be used to model tsunamis
    1515and floods.
    1616
    17 AnuGA is a python package with some C extensions (and an optional fortran extension). At present AnuGA has not been ported to python 3. We recommend using python 2.7 
     17AnuGA is a python package with some C extensions (and an optional
     18fortran extension). At present AnuGA has not been ported to python 3.
     19We recommend using python 2.7 
    1820
    1921Developed at the Risk Assessment Methods Project at Geoscience
  • trunk/anuga_core/setup.py

    r9590 r9635  
    55    and outflow, and then the simulation is run.
    66
    7     This is the public API to ANUGA. It provides a toolkit of often-used
    8     modules, which can be used directly by including the following line in
    9     the user's code:
    10 
    11     import anuga
    12        
    13     This usage pattern abstracts away the internal heirarchy of the ANUGA
    14     system, allowing the user to concentrate on writing simulations without
    15     searching through the ANUGA source tree for the functions that they need.
    16    
    17     Also, it isolates the user from "under-the-hood" refactorings.
     7    AnuGA is a python package with some C extensions
     8    (and an optional fortran extension). At present AnuGA has not been
     9     ported to python 3. We recommend using python 2.7 
     10
     11    Developed at the Risk Assessment Methods Project at Geoscience
     12    Australia and Mathematical Sciences Institute at the Australian
     13    National University.
     14
     15
     16Copyright 2004, 2005, 2006, 2015
     17Ole Nielsen, Stephen Roberts, Duncan Gray, Jane Sexton, Gareth Davies
     18
    1819"""
    1920
     
    183184    write_version_py()
    184185
     186
     187    with open('README.rst') as file:
     188        long_description = file.read()
     189   
    185190    metadata = dict(
    186191        name = 'anuga',
     
    188193        maintainer_email = "anuga-user@lists.sourceforge.net",
    189194        description = DOCLINES[0],
    190         long_description = "\n".join(DOCLINES[2:]),
     195        long_description = long_description,
    191196        url = "http://anuga.anu.edu.au",
    192197        author = "Stephen Roberts, Ole Nielsen et al.",
Note: See TracChangeset for help on using the changeset viewer.