Hey everyone.
I just made a small app and then wrote a setup.py
file for it. Everything seems to be working, except I can't figure out a small thing.
When passing the bdist
option to setup.py
, it creates the archive gzipped tar file. When I open that file, I notice that the directory structure is:
> usr
> lib
> python2.6
> site-packages
> Folder 1
> Folder 2
What is the reason for this? Typically, I had expect that Folder 1 and Folder 2 would be in the root directory. Why does bdist
add the top level directories? Is there any way I can get rid of them (more importantly, should I get rid of them?)