├── .coveragerc ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.rst ├── CONTRIBUTORS.txt ├── LICENSE ├── MANIFEST.in ├── README.rst ├── RELEASING.md ├── mathfilters ├── __init__.py ├── templatetags │ ├── __init__.py │ └── mathfilters.py └── tests.py ├── pyproject.toml └── setup.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrgn/django-mathfilters/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrgn/django-mathfilters/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrgn/django-mathfilters/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrgn/django-mathfilters/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrgn/django-mathfilters/HEAD/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrgn/django-mathfilters/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrgn/django-mathfilters/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrgn/django-mathfilters/HEAD/README.rst -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrgn/django-mathfilters/HEAD/RELEASING.md -------------------------------------------------------------------------------- /mathfilters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mathfilters/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mathfilters/templatetags/mathfilters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrgn/django-mathfilters/HEAD/mathfilters/templatetags/mathfilters.py -------------------------------------------------------------------------------- /mathfilters/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrgn/django-mathfilters/HEAD/mathfilters/tests.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrgn/django-mathfilters/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbrgn/django-mathfilters/HEAD/setup.py --------------------------------------------------------------------------------