├── .editorconfig ├── .github └── workflows │ ├── coverage.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CREDITS ├── LICENSE.txt ├── Makefile ├── README.md ├── changes ├── +ELPCCOcId.rm.md ├── +LwN0ot4ZG.change.md ├── +WlQxBsgYl.change.md ├── +yDU0etTG2.change.md └── +yyjhuRrea.feat.md ├── pyproject.toml ├── src └── wtforms_html5 │ └── __init__.py └── tests ├── __init__.py ├── conftest.py ├── test_autoattrmeta.py ├── test_get_html5_kwargs.py └── test_version.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutus/wtforms-html5/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutus/wtforms-html5/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutus/wtforms-html5/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutus/wtforms-html5/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutus/wtforms-html5/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutus/wtforms-html5/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutus/wtforms-html5/HEAD/CREDITS -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutus/wtforms-html5/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutus/wtforms-html5/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutus/wtforms-html5/HEAD/README.md -------------------------------------------------------------------------------- /changes/+ELPCCOcId.rm.md: -------------------------------------------------------------------------------- 1 | :coffin: Drop support for _end of life_ Python versions (`3.7`, `3.8`). 2 | -------------------------------------------------------------------------------- /changes/+LwN0ot4ZG.change.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutus/wtforms-html5/HEAD/changes/+LwN0ot4ZG.change.md -------------------------------------------------------------------------------- /changes/+WlQxBsgYl.change.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutus/wtforms-html5/HEAD/changes/+WlQxBsgYl.change.md -------------------------------------------------------------------------------- /changes/+yDU0etTG2.change.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutus/wtforms-html5/HEAD/changes/+yDU0etTG2.change.md -------------------------------------------------------------------------------- /changes/+yyjhuRrea.feat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutus/wtforms-html5/HEAD/changes/+yyjhuRrea.feat.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutus/wtforms-html5/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/wtforms_html5/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutus/wtforms-html5/HEAD/src/wtforms_html5/__init__.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutus/wtforms-html5/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutus/wtforms-html5/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_autoattrmeta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutus/wtforms-html5/HEAD/tests/test_autoattrmeta.py -------------------------------------------------------------------------------- /tests/test_get_html5_kwargs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutus/wtforms-html5/HEAD/tests/test_get_html5_kwargs.py -------------------------------------------------------------------------------- /tests/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutus/wtforms-html5/HEAD/tests/test_version.py --------------------------------------------------------------------------------