I have SAM project structure like this:
sam-app/
├── README.md
├── events/
│ └── event.json
├── myTestLambda/
│ ├── app.py
│ └── requirements.txt
├── template.yaml
└── tests/
└── unit/
├── __init__.py
└── test_handler.py
After publishing in lambda storage I have the same structure with all files from project instead only one lambda function file. How to ignore project files?