[Pymoul-svn] SF.net SVN: pymoul: [45] pymoul/trunk
Status: Alpha
Brought to you by:
tiran
From: <ti...@us...> - 2007-01-18 17:02:00
|
Revision: 45 http://pymoul.svn.sourceforge.net/pymoul/?rev=45&view=rev Author: tiran Date: 2007-01-18 09:01:49 -0800 (Thu, 18 Jan 2007) Log Message: ----------- * Fixed compileui.py to create files * Added AUTHORS.txt * Add txt files to dist Modified Paths: -------------- pymoul/trunk/compileui.py pymoul/trunk/setup.py Added Paths: ----------- pymoul/trunk/AUTHORS.txt Added: pymoul/trunk/AUTHORS.txt =================================================================== --- pymoul/trunk/AUTHORS.txt (rev 0) +++ pymoul/trunk/AUTHORS.txt 2007-01-18 17:01:49 UTC (rev 45) @@ -0,0 +1,13 @@ +Authors +------- + +Christian Heimes (maintainer, software design, QT ui) + +Others +------ + +ELF crypt code based on Marack's C++ code. + +Whatdoyousee crypt code based on the C++ code from Joseph D. and Anonymous54321. + +miniwinshell is a stripped down version of Tim Golden's winshell. Property changes on: pymoul/trunk/AUTHORS.txt ___________________________________________________________________ Name: svn:eol-style + native Modified: pymoul/trunk/compileui.py =================================================================== --- pymoul/trunk/compileui.py 2007-01-18 17:00:13 UTC (rev 44) +++ pymoul/trunk/compileui.py 2007-01-18 17:01:49 UTC (rev 45) @@ -22,7 +22,11 @@ UI_MODULE = "moul.qt.ui" def _newer(orig, py): - return os.stat(orig)[ST_MTIME] > os.stat(py)[ST_MTIME] + try: + return os.stat(orig)[ST_MTIME] > os.stat(py)[ST_MTIME] + except Exception: + return True + def previewUi(uifname): """Copied from PyQt.uic.pyuic Modified: pymoul/trunk/setup.py =================================================================== --- pymoul/trunk/setup.py 2007-01-18 17:00:13 UTC (rev 44) +++ pymoul/trunk/setup.py 2007-01-18 17:01:49 UTC (rev 45) @@ -10,10 +10,13 @@ import sys import os import time +from glob import glob + # boot strap easy setup SETUPTOOLS_VERSION = "0.6c1" from ez_setup import use_setuptools use_setuptools(version=SETUPTOOLS_VERSION) + from setuptools import setup from setuptools import find_packages from compileui import compileUi @@ -50,7 +53,7 @@ setup_options = dict( setup_requires = ["setuptools>="+SETUPTOOLS_VERSION,], install_requires = [], - data_files = [], + data_files = list(glob('*.txt')), package_dir = {'' : 'src'}, packages = find_packages('src', exclude="moul.qt"), include_package_data = True, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |