Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #63726

setup.py issue - some files are included as intended, but one is not

Date 2014-01-11 14:04 -0800
Subject setup.py issue - some files are included as intended, but one is not
From Dan Stromberg <drsalists@gmail.com>
Newsgroups comp.lang.python
Message-ID <mailman.5339.1389477852.18130.python-list@python.org> (permalink)

Show all headers | View raw


Hi folks.

I have a setup.py problem that's driving me nuts.

I have a treap.py file that tries to "import * from pyx_treap.so", and
failing that, it'll "import * from py_treap.py" (sans extensions of
course).  Naturally, all 3 of these should be included - although in
the case of pyx_treap.so, it probably should be a .c that's included.

It is also intended to include nest.py, which has a simple form.

Well, treap.py, nest.py and pyx_treap.c are included fine, but I can't
seem to get py_treap.py to be included for some reason.

I get no errors during "python setup.py sdist upload", but upon
"python $(which pip) install treap", I get:
$ sudo /usr/bin/python $(which pip) install treap
Downloading/unpacking treap
  Running setup.py egg_info for package treap

    file py_treap.py (for module py_treap) not found
Installing collected packages: treap
  Running setup.py install for treap
    file py_treap.py (for module py_treap) not found
    file py_treap.py (for module py_treap) not found

    file py_treap.py (for module py_treap) not found
    file py_treap.py (for module py_treap) not found
Successfully installed treap
Cleaning up...

And it's not successfully installed - py_treap.py is missing.  The pyx
code does its job, so the problem is masked, other than the messages
above, and the absence of py_treap.py from
/usr/local/lib/python2.7/dist-packages

I can clearly see py_treap.py in ./dist/treap-1.35.tar.gz - it's at
least getting packaged up that much.  It's not listed in
/usr/local/lib/python2.7/dist-packages/treap-1.31.egg-info/SOURCES.txt
, but I can see it in
/usr/local/lib/python2.7/dist-packages/treap-1.31.egg-info/top_level.txt
.

My setup.py is at:
http://stromberg.dnsalias.org/svn/treap/trunk/setup.py

I've tried that setup.py and several variations on that theme, but
none seem to include py_treap.py .

Please make some suggestions?  How can I get py_treap.py included in
the pip install?

Thanks!

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

setup.py issue - some files are included as intended, but one is not Dan Stromberg <drsalists@gmail.com> - 2014-01-11 14:04 -0800

csiph-web