├── .coveragerc ├── .gitignore ├── LICENSE ├── README.md ├── examples ├── pyqt6 │ └── example.py └── pyside6 │ └── example.py ├── pytest.ini ├── requirements.txt ├── setup.py ├── src └── pyqt_animated_line_edit │ ├── __init__.py │ └── animated_line_edit.py └── tests ├── __init__.py └── animated_line_edit_test.py /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | omit = tests/* -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcohenning/pyqt-animated-line-edit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcohenning/pyqt-animated-line-edit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcohenning/pyqt-animated-line-edit/HEAD/README.md -------------------------------------------------------------------------------- /examples/pyqt6/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcohenning/pyqt-animated-line-edit/HEAD/examples/pyqt6/example.py -------------------------------------------------------------------------------- /examples/pyside6/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcohenning/pyqt-animated-line-edit/HEAD/examples/pyside6/example.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | qt_api=pyqt6 -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | QtPy>=2.4.1 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcohenning/pyqt-animated-line-edit/HEAD/setup.py -------------------------------------------------------------------------------- /src/pyqt_animated_line_edit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcohenning/pyqt-animated-line-edit/HEAD/src/pyqt_animated_line_edit/__init__.py -------------------------------------------------------------------------------- /src/pyqt_animated_line_edit/animated_line_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcohenning/pyqt-animated-line-edit/HEAD/src/pyqt_animated_line_edit/animated_line_edit.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcohenning/pyqt-animated-line-edit/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/animated_line_edit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcohenning/pyqt-animated-line-edit/HEAD/tests/animated_line_edit_test.py --------------------------------------------------------------------------------