gitextract_of6gshgr/ ├── .gitignore ├── .readthedocs.yml ├── .travis.yml ├── CONTRIBUTING.rst ├── CONTRIBUTORS ├── LICENSE ├── README.rst ├── codecov.yml ├── dev/ │ ├── docker-compose.yml │ └── postgres_init.sh ├── docs/ │ ├── Makefile │ ├── readthedocs.txt │ └── source/ │ ├── _templates/ │ │ └── sidebarlogo.html │ ├── api.rst │ ├── conf.py │ ├── decorators.rst │ ├── design.rst │ ├── index.rst │ ├── installation.rst │ └── signals.rst ├── pg_partitioning/ │ ├── __init__.py │ ├── apps.py │ ├── constants.py │ ├── decorators.py │ ├── manager.py │ ├── migrations/ │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── patch/ │ │ ├── __init__.py │ │ └── schema.py │ ├── shortcuts.py │ └── signals.py ├── run_test.py ├── setup.cfg ├── setup.py ├── tests/ │ ├── __init__.py │ ├── models.py │ └── tests.py └── tox.ini