Packaging Django Application

Is there any way to make a build of Django (a zip file or artifact), store this build in S3 and later AWS Codedeploy can pick this build up as per build number for deployment ?
I have configured Jenkins pipeline that do the deployment work by Nginx and Gunicorn setup, but it directly deploys the code on server without making any such build or package.

I want to make a zip file or something to package whole Django deployable in one file.
Please tell me any possible way for this.