Hi, I'm building a set of correlated (they provide...
# general
b
Hi, I'm building a set of correlated (they provide different aspects of the functionality) python modules with a little bit of frontend. Currently all modules live in separate git repos and correlated maintenance of the whole set is already tricky. I'm looking into Pants as a way to develop and release together several python modules. I understand, that there will be no issues in "develop" part, but will Pants support to packaging and publishing several interdependent packages?
c
Hi! Yes, there's a
publish
goal (and
package
if you want to just build and not publish) for that purpose: https://www.pantsbuild.org/2.21/docs/python/goals/publish 🙂 https://www.pantsbuild.org/2.21/docs/python/goals/package
Pants uses
twine
for publishing distributions.
b
Great, I'll give it a try!
g
👋 Hi @billions-toddler-52776, not sure if you remember me, but we met at PyCon US 2011 in Atlanta! 😀 I'm also evaluating pants, still not fully on board (haven't finished the full PoC).
👋 1
p
The
package
step will dump whl in the dist/ directory. I think once you have 1 BUILD file setup, you can use that for other modules
👍 1