[Pymoul-svn] SF.net SVN: pymoul: [29] pymoul/trunk
Status: Alpha
Brought to you by:
tiran
From: <ti...@us...> - 2007-01-15 19:05:54
|
Revision: 29 http://pymoul.svn.sourceforge.net/pymoul/?rev=29&view=rev Author: tiran Date: 2007-01-15 11:05:55 -0800 (Mon, 15 Jan 2007) Log Message: ----------- Minor tweaks for the setup system Modified Paths: -------------- pymoul/trunk/Makefile pymoul/trunk/setup.py Property Changed: ---------------- pymoul/trunk/Makefile Modified: pymoul/trunk/Makefile =================================================================== --- pymoul/trunk/Makefile 2007-01-15 19:01:38 UTC (rev 28) +++ pymoul/trunk/Makefile 2007-01-15 19:05:55 UTC (rev 29) @@ -1,5 +1,5 @@ -PYTHON?=python2.5 -TESTFLAGS=-p -v +PYTHON?=python +TESTFLAGS=-v TESTOPTS= SETUPFLAGS= @@ -18,10 +18,13 @@ bdist_egg: $(PYTHON) setup.py $(SETUPFLAGS) bdist_egg +run: + $(PYTHON) src/moul/qt/moulqt.py + test_build: build $(PYTHON) test.py $(TESTFLAGS) $(TESTOPTS) -test_inplace: inplace +test_inplace: $(PYTHON) test.py $(TESTFLAGS) $(TESTOPTS) ftest_build: build Property changes on: pymoul/trunk/Makefile ___________________________________________________________________ Name: svn:eol-style + native Modified: pymoul/trunk/setup.py =================================================================== --- pymoul/trunk/setup.py 2007-01-15 19:01:38 UTC (rev 28) +++ pymoul/trunk/setup.py 2007-01-15 19:05:55 UTC (rev 29) @@ -12,6 +12,7 @@ use_setuptools(version=SETUPTOOLS_VERSION) from setuptools import setup from setuptools import find_packages +from compileui import compileUi VERSION = "0.0" @@ -69,6 +70,7 @@ # Write Metadata and compile UI files writeMetadata() +compileUi() kwargs = {} kwargs.update(setup_infos) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |