source: branches/mpimystic/setup.py @ 224

Revision 224, 970 bytes checked in by mmckerns, 6 years ago (diff)

cleanup after core of pyina moves to pathos; remainder moves to mpimystic

Line 
1#!/usr/bin/env python
2#
3# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4#
5#                       Patrick Hung & Mike McKerns, Caltech
6#                        (C) 1998-2010  All Rights Reserved
7#
8# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9#
10
11from distutils.core import setup, Extension
12from sys import platform
13import os
14
15setup(name="mpimystic",
16    version="0.01",
17    maintainer="Mike McKerns",
18    maintainer_email="mmckerns@caltech.edu",
19    license="BSD",
20    platforms=["any"],
21    description="MPI version of Parallel-Mapping Inversion Analysis Framework",
22    classifiers=(
23        "Intended Audience :: Developers",
24        "Programming Language :: Python",
25        "Development Status :: 2 - Pre-Alpha",
26        "Topic :: Physics Programming"),
27
28    packages=['mpimystic'],
29    package_dir={'mpimystic':'mpimystic'},
30    scripts=[])
31
32
33if __name__=='__main__':
34    pass
35
36# End of file
Note: See TracBrowser for help on using the repository browser.