Beispiel #1
0
from archimedes import use_merlin
use_merlin()

from merlin import setup, find_packages

setup(
    
    name = 'lithomop', 
    version = '0.7.3',

    zip_safe = False,
    package_dir = { "":"lithomop3d" },
    packages = find_packages("lithomop3d"),
    
    install_requires = [
    'pythia[mpi] >= 0.8.1.3, < 0.8.2a',
    ],

    author = 'Charles A. Williams',
    author_email = '*****@*****.**',
    description = """A finite element code for the solution of visco-elastic/plastic deformation that was designed for lithospheric modeling problems.""",
    license = 'other',
    url = 'http://www.geodynamics.org/cig/software/packages/short/lithomop/',

)
Beispiel #2
0
if want_exchanger == 'auto':
    # Use Exchanger if it's available.
    try:
        require(exchanger)
    except Exception, e:
        pass
    else:
        install_requires.append(exchanger)
elif want_exchanger == 'yes':
    # Require Exchanger.
    install_requires.append(exchanger)

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

    zip_safe = False,
    packages = find_packages(),
    
    install_requires = install_requires,

    author = 'Louis Moresi, et al.',
    author_email = '*****@*****.**',
    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/',

)
Beispiel #3
0
from archimedes import use_merlin
use_merlin()

from merlin import setup, find_packages

setup(
    name='lithomop',
    version='0.7.3',
    zip_safe=False,
    package_dir={"": "lithomop3d"},
    packages=find_packages("lithomop3d"),
    install_requires=[
        'pythia[mpi] >= 0.8.1.3, < 0.8.2a',
    ],
    author='Charles A. Williams',
    author_email='*****@*****.**',
    description=
    """A finite element code for the solution of visco-elastic/plastic deformation that was designed for lithospheric modeling problems.""",
    license='other',
    url='http://www.geodynamics.org/cig/software/packages/short/lithomop/',
)
Beispiel #4
0
if want_exchanger == 'auto':
    # Use Exchanger if it's available.
    try:
        require(exchanger)
    except Exception, e:
        pass
    else:
        install_requires.append(exchanger)
elif want_exchanger == 'yes':
    # Require Exchanger.
    install_requires.append(exchanger)

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

    zip_safe = False,
    packages = find_packages(),
    
    install_requires = install_requires,

    author = 'Louis Moresi, et al.',
    author_email = '*****@*****.**',
    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/',

)
Beispiel #5
0
from archimedes import use_merlin
use_merlin()

from merlin import setup, find_packages

setup(
    
    name = 'PyLith', 
    version = '1.0',

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

    author = 'Brad Aagaard, Charles A. Williams, and Matt Knepley',
    author_email = '*****@*****.**',
    description = """A finite element code for the solution of crustal deformation problems associated with earthquakes, including kinematic ruptures, spontaneous ruptures, and pre- and post-seismic deformation.""",
    license = 'other',
    url = 'http://www.geodynamics.org/cig/software/packages/short/pylith/',

)
Beispiel #6
0
from archimedes import use_merlin
use_merlin()

from merlin import setup, find_packages

setup(
    
    name = 'Exchanger', 
    version = '1.0',

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

    author = 'Eh Tan',
    author_email = '*****@*****.**',
    license = 'GPL',
    url = 'http://www.geodynamics.org/cig/software/packages/mc/citcoms/',

)