├── .coveragerc ├── .github └── workflows │ └── publish.yml ├── .gitignore ├── .isort.cfg ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── pkgconf └── __init__.py ├── setup.cfg ├── setup.py ├── test_project ├── manage.py ├── myconf.py ├── mymixinconf.py ├── myprefixconf.py └── settings.py ├── tests ├── __init__.py ├── test_base.py └── test_imports.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | source = pkgconf 3 | 4 | [report] 5 | omit = *tests* 6 | -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byashimov/django-pkgconf/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.egg-info 2 | *.py[co] 3 | .coverage 4 | __pycache__ 5 | build/ 6 | dist/ 7 | -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byashimov/django-pkgconf/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byashimov/django-pkgconf/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byashimov/django-pkgconf/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byashimov/django-pkgconf/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byashimov/django-pkgconf/HEAD/README.rst -------------------------------------------------------------------------------- /pkgconf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byashimov/django-pkgconf/HEAD/pkgconf/__init__.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description_file = README.rst 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byashimov/django-pkgconf/HEAD/setup.py -------------------------------------------------------------------------------- /test_project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byashimov/django-pkgconf/HEAD/test_project/manage.py -------------------------------------------------------------------------------- /test_project/myconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byashimov/django-pkgconf/HEAD/test_project/myconf.py -------------------------------------------------------------------------------- /test_project/mymixinconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byashimov/django-pkgconf/HEAD/test_project/mymixinconf.py -------------------------------------------------------------------------------- /test_project/myprefixconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byashimov/django-pkgconf/HEAD/test_project/myprefixconf.py -------------------------------------------------------------------------------- /test_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byashimov/django-pkgconf/HEAD/test_project/settings.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byashimov/django-pkgconf/HEAD/tests/test_base.py -------------------------------------------------------------------------------- /tests/test_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byashimov/django-pkgconf/HEAD/tests/test_imports.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byashimov/django-pkgconf/HEAD/tox.ini --------------------------------------------------------------------------------