mirror of
https://github.com/initialcommit-com/git-sim.git
synced 2026-04-27 03:25:53 +03:00
[GH-ISSUE #9] Dependency Management #9
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/git-sim#9
Loading…
Add table
Add a link
Reference in a new issue
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?
Originally created by @paketb0te on GitHub (Jan 23, 2023).
Original GitHub issue: https://github.com/initialcommit-com/git-sim/issues/9
Originally assigned to: @paketb0te on GitHub.
Once again, this is a great tool!
Can I interest you in using
poetryfor packaging and dependency management?I had pretty good experiences with it, can definitely recommend.
If you prefer a simpler approach like
requirements.txtthat's fine too (but I really recommend to take a look at poetry 😆)(Would look something like THAT)
@initialcommit-io commented on GitHub (Jan 23, 2023):
Hi and thank you! Thx for reaching out.
Right now I'm just using entries in the
setup.pylike:Which takes care of collecting everything automatically. It looks like the
poetry.lockfile you generated breaks down every dependency and stores it. Is the benefit of this that it more or less guarantees that the build will succeed by defining specific versions of every dependency? Seems a bit messier to need to store all of this info though when most of the build dependences are nested within each other. Like, most of those dependencies come from Manim...@paketb0te commented on GitHub (Jan 23, 2023):
yeah, you only need to specify them explicitly in the
pyproject.tomlfile (with constrints, if you wish, like "needs at least verion X.Y of package Z").The file
poetry.lockis created automatically by poetry (poetry lock) to pin all dependencies to fixed versions, which as you mention helps ensure that the build is reproducible / identical for everybody.@initialcommit-io commented on GitHub (Jan 25, 2023):
I see, thanks for the suggestion. I need to learn more about
poetryand other options and will get back to you on this one.@initialcommit-io commented on GitHub (Jan 27, 2023):
@paketb0te I'm playing around with poetry and got a similar
pyproject.tomlfile to the one at your link.Just a few questions about some extra info that is currently in the
setup.pyfile which I wasn't prompted for by the interactive poetry setup:-url
-keywords
-project_urls (homepage and source)
-entry_points
Do you know how these can be specified with poetry?
@paketb0te commented on GitHub (Jan 27, 2023):
According to the docs, we can just specify those in
pyproject.toml, e.g.repository = "https://github.com/initialcommit-com/git-sim"So it would look something like this:
If I understand correctly, you can define the equivalent to
entry_pointsvia plugins in a subsection in thepyproject.toml(see docs)edit: Apparently you can also define arbitrary URLs besides homepage and repo: urls
@buhtz commented on GitHub (May 9, 2023):
In relation to #85
I'm not well experienced packaging big projects but small ones.
In #85 you also stated that you are not well experienced with packaing. Because of that I would like to give an advice to save your resources, your time, your nerves and keep the project (and its maintainer) healty. 😄
pyproject.toml(without setup.py/setup.cfg) and nothing else.Again about 2. and 3. This are not bad tools. The problem is just that they are recommended in every blog post etc. But they are intended to solve problems that "small projects" usually don't have. Keep your solutions grounded.
If you like you can contact me and I explain you my real world projects how I solved somethings just using pyproject.toml not using anything else.
@paketb0te commented on GitHub (May 9, 2023):
Hi @buhtz, thanks for your input on this.
I was not aware that you can also specify dependencies in
pyproject.toml, that's super neat!-> That kinda obsoletes the usage of poetry for now, I guess.
@initialcommit-io let's close this issue.
@buhtz I'd be glad to work on #85 together, if you are up for it. I have to do some reading about project layout before though 😁
@initialcommit-io commented on GitHub (May 9, 2023):
Sounds good @paketb0te, closing this one for now so
pyproject.tomlwork can be continued thru #85 .