pbr should support package_dir
Bug #1374254 reported by
Zachary Roadhouse
This bug affects 3 people
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
PBR |
Confirmed
|
Wishlist
|
Unassigned |
Bug Description
Our python packages locate source under the src directory instead of under the root directory. This is no problem for setuputils, since it provides the package_dir option. Example:
setup(
...
packages=
package_
...
)
Please add support to pbr for alternative source organization conventions like src that are supported by package_dir. Current behavior of pbr is to include the src dir and everything under it (leading to incorrect package paths).
Changed in pbr: | |
status: | New → Incomplete |
importance: | Undecided → Wishlist |
To post a comment you must log in.
Have you tried adding the following to your setup.cfg:
[files]
packages_root = src