pybtex-0.22.2 installs a package called 'tests'

Issue #129 resolved
William Throwe created an issue

After ./setup.py build and ./setup.py install --root rootdir:

$ ls rootdir/usr/lib64/python3.6/site-packages/
pybtex  pybtex-0.22.2-py3.6.egg-info  tests

Comments (4)

  1. Former user Account Deleted

    I just noticed the exact same thing, and I suspect it’s because

    1. the tests directory contains an init file
    2. the setup.py uses find_packages() which automatically picked it up.

    I’m guessing a more judicious use of find_packages() should fix this, perhaps with include=[”pybtex”] or a suitable exclude/where argument.

  2. Log in to comment