I have a pyproject.toml:
[tool.poetry.scripts]
# aka entry points or console scripts for setup.py users
merge = 'mypackage.__main__:main'
mypackage contains some assert statements that I do not want run in production, but I would like to run these scripts in "optimized" mode.
Is this possible to do with a poetry script?