I am trying to upload private packages to a repository in my Artifact Registry. I'm using google cloud shell to upload a /dist from my package using twine. Using the following tutorial https://cloud.google.com/artifact-registry/docs/python/store-python
Trying to upload any package on my side using twine:
python3 -m twine upload --repository-url https://MY_REGION-python.pkg.dev/MY_PROJECT/MY_REPO dist/*
gives me :
ERROR HTTPError: 413 Request Entity Too Large from https://eu-west3-python.pkg.dev/membrane-94db9/nlpmodels Request Entity Too Large
even a 56.8 kB package gives me this error Any idea how to increase this limit? Thanks,