-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Renamed the top-level source code directory. #57
Conversation
Renamed the top-level source code directory from `server` to `src` to be compliant with the team's practice and to allow for a namespace for CLI tools in the same source tree.
npg.porch is collapsed into npg_porch npg.porchdb is reorganised into npg_porch.db The entry point of the application is relocated and renamed npg/porch_server.py -> npg_porch/server.py Import statements in teh code and tests and docs are updated.
a3786c5
to
22455e5
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we can get rid of setup.cfg, because the src folder should be searched by default.
Done. The tests still pass. |
89d5a9d
to
7dfcdf7
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well done!
Renamed the top-level source code directory from
server
tosrc
to be compliant with the team's practice and to allow for a namespace for CLI tools in the same source tree.