distutils not finding all of my pure python modules

Gabriel Genellina gagsl-py2 at yahoo.com.ar
Sun Jan 24 04:54:51 EST 2010


En Thu, 21 Jan 2010 12:41:20 -0300, Jeremy <jlconlin at 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 = 'something at 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




More information about the Python-list mailing list