I have a Django app developed as part of my existing Django site that I'd like to separate out and publish on PyPI. What folder structure is required to make the app suitable for publishing to PyPI and importable via pip?
Current folder structure (truncated):
mysite/
- conf/
- mysite/
- __init__.py
- settings.py
- myapp/
- __init__.py
- admin.py
- models.py
- manage.py