michael_cooper
10/13/2020, 6:55 PMpoetry for package management, but I can't get it to install on Meltano due to package dependencies. I see that all singer taps have a setup.py file with all of their dependencies, so is that what Meltano is looking for?douwe_maan
10/13/2020, 7:01 PMpip install <pip_url>, so the URL needs to point at a pip-installable package, which typically requires a setup.py file to be used by `setuptools`: https://packaging.python.org/tutorials/packaging-projects/#creating-setup-pydouwe_maan
10/13/2020, 7:02 PMmichael_cooper
10/13/2020, 7:02 PMmichael_cooper
10/13/2020, 7:05 PMpip_url to a remote repo that isn't a pip package already, that it needs to have the setup.py?douwe_maan
10/13/2020, 7:05 PMdouwe_maan
10/13/2020, 7:06 PMsetup.py whether you're pointing at a repo URL or just using a plain package namedouwe_maan
10/13/2020, 7:06 PMpip install will not have the required metadata, which includes the list of dependenciesmichael_cooper
10/13/2020, 7:22 PM