Actions
Task #2463
closedReorganize 3.0-dev branch
Start date:
Due date:
% Done:
100%
Estimated time:
Platform Release:
Groomed:
Yes
Sprint Candidate:
Yes
Tags:
Sprint:
Sprint 19
Quarter:
Description
The goals of this task are to:
- consolidate unnecessary setup.py files into a single one which will live in platform/setup.py. The setup.py will be for the entire pulp.<anything> Python namespace except for three components which will continue to have their own setup.py files: pulp.common, pulp.streamer, and pulp.cli.
- reduce the number of folders at the root
- organize the repo directory structure to mirror the structure it has when its installed
- rename the top level directory to be called 'platform' instead of Pulp. This will allow for a future pip install command from source of
pip install https://github.com/pulp/pulp/platform/
.
# create a top level folder called platform
git mv app platform
# move the platform subpackages into the
git mv exceptions/pulp/exception platform/pulp/exceptions
git mv plugin/pulp/plugin platform/pulp/plugin
git mv tasking/pulp/tasking platform/pulp/tasking
# delete the old dirs we no longer need
git rm -rf exceptions/
git rm -rf plugin/
git rm -rf tasking/
Related issues
Actions
Reorganized the 3.0 dev branch.
Renames the 'app' top-level directory to 'platform'. Consolidates several setup.py files. Moves several top-level directories into the 'platform' directory to better reflect the structure after installation.
closes #2463 https://pulp.plan.io/issues/2463