-
Notifications
You must be signed in to change notification settings - Fork 2
Change to src layout #506
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
Comments
I also ported to the src layout in hextof-processor but I see no real advantage of it, especially considering we only have one top level package called sed in the repo. Also many large projects from my knowledge don't use it, and others do |
The big advantage is that you don't do a silent, unintended import of the package, where your development version behavior might deviate from the packaged version. I find that relevant for good development practice. I also sorted things a litte bit more systematically in the PR #508 to strictly separate source code from everything else. |
Closed by #508 |
Most large python projects have adopted a layout, where the source code files reside inside a src folder. This avoids potential problems with packaging and testing, see e.g. here: https://hynek.me/articles/testing-packaging/
I suggest doing the same for sed for V1
The text was updated successfully, but these errors were encountered: