Arturo Martínez
05/19/2023, 7:20 PMdagster-cloud serverless deploy-python-executable
command using pyproject.toml instead of setup.py ? I really prefer pyproject.toml for the convenience of being managed via poetry.Shalabh Chaturvedi
05/19/2023, 10:34 PMpyproject.toml
for deploy-python-executable
. However if you are using poetry you can do poetry export -f requirements.txt --without-hashes --without-urls -o requirements.txt
to generate a requirements.txt based on your poetry lock. We do support requirements.txt
and that should work.Arturo Martínez
05/19/2023, 11:13 PM