Changeset 9635
- Timestamp:
- Feb 6, 2015, 4:37:45 PM (10 years ago)
- Location:
- trunk/anuga_core
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/INSTALL.rst
r9627 r9635 1 1 2 2 3 .. image:: https://travis-ci.org/stoiver/anuga_core.svg?branch=master4 :target: https://travis-ci.org/stoiver/anuga_core5 6 7 ============8 3 Installation 9 4 ============ … … 14 9 ------------ 15 10 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. 11 AnuGA is a python package with some C extensions (and an optional fortran 12 extension). At present AnuGA has not been transported to python 3. 13 We recommend using python 2.7. 17 14 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. 15 If you have a python 2.7 environment with gcc and gfortran support, 16 then you can use easy_install to install the latest release 17 version of AnuGA. 19 18 20 19 … … 22 21 ------------------ 23 22 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. 23 A safe way to install AnuGA is to use a separate python environment 24 to isolate it from the rest of your system. Miniconda provides such 25 an environment. 25 26 26 27 -
trunk/anuga_core/README.rst
r9627 r9635 11 11 -------------- 12 12 13 AnuGA (pronounced "A N uu GA") is open-source software for the simulation of13 AnuGA (pronounced "AHNooGAH") is open-source software for the simulation of 14 14 the shallow water equation, in particular it can be used to model tsunamis 15 15 and floods. 16 16 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 17 AnuGA is a python package with some C extensions (and an optional 18 fortran extension). At present AnuGA has not been ported to python 3. 19 We recommend using python 2.7 18 20 19 21 Developed at the Risk Assessment Methods Project at Geoscience -
trunk/anuga_core/setup.py
r9590 r9635 5 5 and outflow, and then the simulation is run. 6 6 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 16 Copyright 2004, 2005, 2006, 2015 17 Ole Nielsen, Stephen Roberts, Duncan Gray, Jane Sexton, Gareth Davies 18 18 19 """ 19 20 … … 183 184 write_version_py() 184 185 186 187 with open('README.rst') as file: 188 long_description = file.read() 189 185 190 metadata = dict( 186 191 name = 'anuga', … … 188 193 maintainer_email = "anuga-user@lists.sourceforge.net", 189 194 description = DOCLINES[0], 190 long_description = "\n".join(DOCLINES[2:]),195 long_description = long_description, 191 196 url = "http://anuga.anu.edu.au", 192 197 author = "Stephen Roberts, Ole Nielsen et al.",
Note: See TracChangeset
for help on using the changeset viewer.