├── LICENSE ├── MANIFEST.in ├── README.md ├── annotatable_properties ├── __init__.py ├── apps.py └── managers.py ├── pyproject.toml ├── setup.cfg └── setup.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enesklcarslan/django-annotatable-properties/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enesklcarslan/django-annotatable-properties/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enesklcarslan/django-annotatable-properties/HEAD/README.md -------------------------------------------------------------------------------- /annotatable_properties/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enesklcarslan/django-annotatable-properties/HEAD/annotatable_properties/__init__.py -------------------------------------------------------------------------------- /annotatable_properties/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enesklcarslan/django-annotatable-properties/HEAD/annotatable_properties/apps.py -------------------------------------------------------------------------------- /annotatable_properties/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enesklcarslan/django-annotatable-properties/HEAD/annotatable_properties/managers.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enesklcarslan/django-annotatable-properties/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enesklcarslan/django-annotatable-properties/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enesklcarslan/django-annotatable-properties/HEAD/setup.py --------------------------------------------------------------------------------