├── .coveragerc ├── .github └── workflows │ └── tests.yml ├── .gitignore ├── CHANGES.md ├── CLAUDE.md ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── VERSION ├── mypy.ini ├── pyproject.toml ├── pytest.ini ├── test_settings.py ├── testapp ├── __init__.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_developer_employee_manager.py │ └── __init__.py └── models.py ├── tox.ini └── typedmodels ├── __init__.py ├── admin.py ├── models.py ├── py.typed └── tests.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigds/django-typed-models/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigds/django-typed-models/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigds/django-typed-models/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigds/django-typed-models/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigds/django-typed-models/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigds/django-typed-models/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md LICENSE.txt VERSION 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigds/django-typed-models/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.14.0 2 | -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigds/django-typed-models/HEAD/mypy.ini -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigds/django-typed-models/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | pythonpath = . 3 | -------------------------------------------------------------------------------- /test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigds/django-typed-models/HEAD/test_settings.py -------------------------------------------------------------------------------- /testapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testapp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigds/django-typed-models/HEAD/testapp/migrations/0001_initial.py -------------------------------------------------------------------------------- /testapp/migrations/0002_developer_employee_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigds/django-typed-models/HEAD/testapp/migrations/0002_developer_employee_manager.py -------------------------------------------------------------------------------- /testapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigds/django-typed-models/HEAD/testapp/models.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigds/django-typed-models/HEAD/tox.ini -------------------------------------------------------------------------------- /typedmodels/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.15.0b4" 2 | -------------------------------------------------------------------------------- /typedmodels/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigds/django-typed-models/HEAD/typedmodels/admin.py -------------------------------------------------------------------------------- /typedmodels/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigds/django-typed-models/HEAD/typedmodels/models.py -------------------------------------------------------------------------------- /typedmodels/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typedmodels/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigds/django-typed-models/HEAD/typedmodels/tests.py --------------------------------------------------------------------------------