|
From: <gea...@us...> - 2009-10-06 18:20:51
|
Revision: 356
http://mypyspace.svn.sourceforge.net/mypyspace/?rev=356&view=rev
Author: gearmonkey
Date: 2009-10-06 18:20:33 +0000 (Tue, 06 Oct 2009)
Log Message:
-----------
added an external call to mopy for the class installer. Fancy.
Modified Paths:
--------------
mps/trunk/setup.py
Property Changed:
----------------
mps/trunk/
Property changes on: mps/trunk
___________________________________________________________________
Added: svn:externals
+ mopy -r835 https://motools.svn.sourceforge.net/svnroot/motools/mopy
Modified: mps/trunk/setup.py
===================================================================
--- mps/trunk/setup.py 2009-10-05 10:23:05 UTC (rev 355)
+++ mps/trunk/setup.py 2009-10-06 18:20:33 UTC (rev 356)
@@ -5,17 +5,21 @@
distutil file for the mps module
-needs mopy to work right. the mopy install is a bit ugly...
+uses some setuptools fanciness
Created by Benjamin Fields on 2009-09-04.
-Copyright (c) 2009 Goldsmith University of London. All rights reserved.
+Copyright (c) 2009 Goldsmith University of London.
"""
from setuptools import setup, find_packages
+from subprocess import call
+#this is a bit of a mess, should do it internally.
+call(["python", "mopy/genpy.py"])
+
setup (name = 'mps',
version = '0.1a',
packages = find_packages(),
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|