Chris Withers wrote:
Hi All,

I have a setup.py that looks roughly like:

import os
from setuptools import setup, find_packages
...
setup(
    ...
    packages=find_packages(),
    zip_safe=False,
    include_package_data=True,
    ...
    )

...and a file layout roughly like:

/bootstrap.py
/buildout.cfg
/setup.py
/mypackage/...

When I do setup.py sdist, the resulting .zip [1] file contains bootstrap.py and setup.py but not buildout.cfg, even though it is in svn.

I tried to brute force this by adding a MANIFEST.in next to setup.py containing :

recursive-include . *.cfg

...but still buldout.cfg wasn't included.

*sigh*

Any ideas?

Chris

--
Simplistix - Content Management, Zope & Python Consulting
           - http://www.simplistix.co.uk
_______________________________________________
Distutils-SIG maillist  -  [email protected]
http://mail.python.org/mailman/listinfo/distutils-sig

Reply via email to