https://dagster.io/ logo
Title
a

Arturo Martínez

05/19/2023, 7:20 PM
Hello! I have a doubt, is it possible to deploy a dagster project to dagster cloud via
dagster-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.
:dagster: 1
1
s

Shalabh Chaturvedi

05/19/2023, 10:34 PM
Hi Arturo - unfortunately we do not support only
pyproject.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.
:dagster: 1
a

Arturo Martínez

05/19/2023, 11:13 PM
thanks! will try it!
thanks a lot! it worked
:dagster-yay: 1