[Yt-svn] yt-commit r855 - branches/yt-generalization

mturk at wrangler.dreamhost.com mturk at wrangler.dreamhost.com
Wed Oct 29 16:53:43 PDT 2008


Author: mturk
Date: Wed Oct 29 16:53:43 2008
New Revision: 855
URL: http://yt.spacepope.org/changeset/855

Log:
yt-generalization needs a new setup file too



Modified:
   branches/yt-generalization/setup.cfg
   branches/yt-generalization/setup.py

Modified: branches/yt-generalization/setup.cfg
==============================================================================
--- branches/yt-generalization/setup.cfg	(original)
+++ branches/yt-generalization/setup.cfg	Wed Oct 29 16:53:43 2008
@@ -1,3 +1,3 @@
 [egg_info]
-tag_build = .dev
-tag_svn_revision = 1
+tag_build = 
+tag_svn_revision = 0

Modified: branches/yt-generalization/setup.py
==============================================================================
--- branches/yt-generalization/setup.py	(original)
+++ branches/yt-generalization/setup.py	Wed Oct 29 16:53:43 2008
@@ -9,7 +9,8 @@
 
 APP = ['reason.py']
 DATA_FILES = []
-OPTIONS = {'argv_emulation': True}
+PY2APP_OPTIONS = {'argv_emulation': True}
+VERSION = "2.0dev"
 
 if os.path.exists('MANIFEST'): os.remove('MANIFEST')
 
@@ -34,17 +35,34 @@
 
     setup(
         name = "yt",
-        version = "0.3",
-        description = "A set of classes for manipulating Enzo Adaptive Mesh Refinement data",
-        install_requires = ['matplotlib>=0.90.1',
-                            'numpy>=1.0.3',
-                            'wxPython>=2.8.7.1'],
-        url = "http://yt.spacepope.org/",
-        author="Matthew Turk",
-        author_email="matt at yt.spacepope.org",
+        version = VERSION,
+        description = "An analysis and visualization toolkit for Adaptive Mesh " \
+                    + "Refinement data, specifically for the Enzo and Orion codes.",
+        classifiers = [ "Development Status :: 5 - Production/Stable",
+                        "Environment :: Console",
+                        "Intended Audience :: Science/Research",
+                        "License :: OSI Approved :: GNU General Public License (GPL)",
+                        "Operating System :: MacOS :: MacOS X",
+                        "Operating System :: POSIX :: AIX",
+                        "Operating System :: POSIX :: Linux",
+                        "Programming Language :: C",
+                        "Programming Language :: Python",
+                        "Topic :: Scientific/Engineering :: Astronomy",
+                        "Topic :: Scientific/Engineering :: Physics",
+                        "Topic :: Scientific/Engineering :: Visualization", ],
+        keywords='astronomy astrophysics visualization amr adaptivemeshrefinement',
+        install_requires = ['matplotlib', 'numpy','ipython'],
+        extras_require = { 'GUI' : ['wxPython'],
+                           'storage' : ['tables'], },
+        author="Matthew J. Turk",
+        author_email="matthewturk at gmail.com",
+        url = "http://yt.enzotools.org/",
         license="GPL-3",
         configuration=configuration,
-        #app=APP, data_files=DATA_FILES, options={'py2app':OPTIONS},
+        app=APP, # for py2app
+        data_files=DATA_FILES,
+        options={'py2app':PY2APP_OPTIONS},
+        zip_safe=False,
         )
     return
 



More information about the yt-svn mailing list