Re: distutils not finding all of my pure python modules

2010-01-24 Thread Gabriel Genellina
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

distutils not finding all of my pure python modules

2010-01-21 Thread Jeremy
I have a small set of Python packages/modules that I am putting together. I'm having trouble in that when I run python setup.py sdist I don't get all of my pure python modules. The setup.py script I use is: # = from distutils.core import setup