https://github.com/geodynamics/citcoms
Revision d5b200bb8db3ff9ef1235f4ca910597b3ace6e2c authored by Leif Strand on 16 November 2006, 21:25:54 UTC, committed by Leif Strand on 16 November 2006, 21:25:54 UTC
once again built under the 'bin' subdirectory.

Also reviewed all references to PREFIX.

1 parent a1e12dc
Raw File
Tip revision: d5b200bb8db3ff9ef1235f4ca910597b3ace6e2c authored by Leif Strand on 16 November 2006, 21:25:54 UTC
Corrections with respect to r5302: the binaries/scripts are now
Tip revision: d5b200b
setup.py

from archimedes import use_merlin
use_merlin()

from merlin import setup, find_packages

setup(
    
    name = 'CitcomS', 
    version = '2.1',

    zip_safe = False,
    packages = find_packages(),
    
    install_requires = [
    'pythia[mpi] >= 0.8.1.0b4, < 0.8.2a',
    ],

    author = 'Louis Moresi, et al.',
    author_email = 'cig-mc@geodynamics.org',
    description = """A finite element mantle convection code.""",
    long_description = """CitcomS is a finite element code designed to solve thermal convection problems relevant to Earth's mantle. Written in C, the code runs on a variety of parallel processing computers, including shared and distributed memory platforms.""",
    license = 'GPL',
    url = 'http://www.geodynamics.org/cig/software/packages/mc/citcoms/',

)
back to top