fred_reimer
10/21/2021, 2:40 PMpython 3 setup.py sdist bdist bdist_egg
to produce the packages. However, since Meltano uses poetry I'd want to use however packages are created to make them most useful for others.
Can someone point me to how packages should be created for taps/targets with poetry, or should I just stick with what works for us?visch
10/21/2021, 2:44 PMpoetry build
, then poetry publish
poetry publish publish's my tap to PyPi. Super easy, I think under the hood it uses python 3 setup.py sdist bdist bdist_egg
visch
10/21/2021, 2:45 PMfred_reimer
10/21/2021, 2:46 PMvisch
10/21/2021, 2:47 PMsdist
, and bdist
no egg. Could probably be added 🤷edgar_ramirez_mondragon
10/21/2021, 2:50 PMfred_reimer
10/21/2021, 4:26 PM