[cig-commits] r5010 - cs/merlin/trunk

leif at geodynamics.org leif at geodynamics.org
Sat Oct 14 09:02:52 PDT 2006


Author: leif
Date: 2006-10-14 09:02:52 -0700 (Sat, 14 Oct 2006)
New Revision: 5010

Added:
   cs/merlin/trunk/setup.py
Removed:
   cs/merlin/trunk/pythia/
Modified:
   cs/merlin/trunk/
Log:
Created an empty 'merlin' egg (which simply depends
upon pythia), just in case Merlin needs a faster
release cycle.



Property changes on: cs/merlin/trunk
___________________________________________________________________
Name: svn:externals
   + ez_setup    http://geodynamics.org/svn/cig/cs/ez_setup


Added: cs/merlin/trunk/setup.py
===================================================================
--- cs/merlin/trunk/setup.py	2006-10-14 15:45:49 UTC (rev 5009)
+++ cs/merlin/trunk/setup.py	2006-10-14 16:02:52 UTC (rev 5010)
@@ -0,0 +1,25 @@
+
+from ez_setup import use_setuptools
+use_setuptools()
+
+from setuptools import setup
+
+setup(
+    
+    name = 'merlin', 
+    version = '0.8.1.0',
+
+    zip_safe = True,
+    
+    install_requires = [
+    'pythia[merlin] >= 0.8.1.0a, < 0.8.2.0a',
+    ],
+    
+    author = 'Michael A.G. Aivazis',
+    author_email = 'aivazis at caltech.edu',
+    description = 'A wizard.',
+    license = 'BSD',
+    url = 'http://www.geodynamics.org/cig/software/packages/pythia/',
+    download_url = 'http://crust.geodynamics.org/~leif/shipping/', # temporary
+    
+    )



More information about the cig-commits mailing list