Refactoring and project organization #5
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Now that we have a few loc and templates etc it might be a good idea to do a general refactor where we:
Thoughts, known best practices welcome!
Yeah nice!
I shuffled stuff into a typical package format that I've seen over in https://git.vvvvvvaria.org/rra/dropship/src/branch/its-a-package-ma. Maybe a base to start from? Don't know but in order to split things up into files and have them import each other, I think we need to turn the project into a python package. This new
pyproject.toml
seems to be a new way to just have a single file instead of 100000s likesetup.py
,setup.cfg
,MANIFEST.in
, etc.If you wanna just go on a rampage of renaming to follow minigalaxy or whatever else, then go for it!
OK, so I've merged tranmissions/package branches into a new setup which you can see on main now: https://git.vvvvvvaria.org/rra/dropship. That uses https://python-poetry.org/docs/ for managing the packaging thing which I propose but if it is troublesome, we can remove (I think
pyproject.toml
can also work with plainpip
too). Anyway, any sort of moving/renaming/etc. can go on now from here since we have a "base" package structure now.