-
-
Notifications
You must be signed in to change notification settings - Fork 32
In-brick pyproject.toml support #138
Copy link
Copy link
Closed
Labels
documentationImprovements or additions to documentationImprovements or additions to documentationquestionFurther information is requestedFurther information is requested
Description
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentationquestionFurther information is requestedFurther information is requested
In Clojure polylith we have a separate deps.edn for each brick, which allows us to not repeat dependencies in dev deps.edn and project deps.edn — they are merged from all bricks' deps.edn file. Is it possible to have this in python polylith and multiproject?
For example I want to have a component
logwhich depends on a logging libraryloguru, and this is specified in the in-component pyproject.toml. When I include this in a project,loguruwill be automatically installed, like normal library dependency.