En Thu, 21 Jan 2010 12:41:20 -0300, Jeremy <jlcon...@gmail.com> escribió:
from distutils.core import setup purePythonModules = ['regex', 'gnuFile'] setup(name='PythonForSafeguards', version='0.9.1', description = 'Python code for MCNP and Safeguards analysis.', author = 'Jake the Snake', author_email = 'someth...@blah.com', packages = ['MCNP', 'Safeguards'], url='http://lanl.gov', py_modules = purePythonModules, ) # ========================================= Everythin seems to work fine except the gnuFile.py script does not get put into the distribution. I know the file exists in the same directory as regex.py and has the same permissions.
regex.py and gnuFile.py must be in the same directory as setup.py, ok? -- Gabriel Genellina -- http://mail.python.org/mailman/listinfo/python-list