On 06/15/2013 10:13 AM, Tres Seaver wrote:
On 06/15/2013 02:29 AM, Ethan Furman wrote:

Any ideas?  Is this the right place to post?

This is the right place.  Your 'package_data' declaration is getting munged::

[snip]

Looking at the 'build_py' step, this line is problematic:

    package_dir={'enum':''},

When I change it to:

    package_dir={'enum':'.'},

then the install succeeds.  I would probably just make an 'enum' subdir,
move the files into it, and be done with it ('setup.py' isn't logically
part of the package:  it is in the wrapper).

I went with the latter solution, which worked fine.  Thanks!

--
~Ethan~
_______________________________________________
Distutils-SIG maillist  -  [email protected]
http://mail.python.org/mailman/listinfo/distutils-sig

Reply via email to