├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── azure-pipelines.yml ├── future_fstrings.py ├── requirements-dev.txt ├── setup.cfg ├── setup.py ├── testing ├── fix_coverage.py └── remove_pycdir.py ├── tests ├── __init__.py └── future_fstrings_test.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile-archive/future-fstrings/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile-archive/future-fstrings/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile-archive/future-fstrings/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile-archive/future-fstrings/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile-archive/future-fstrings/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /future_fstrings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile-archive/future-fstrings/HEAD/future_fstrings.py -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | covdefaults 2 | coverage>=5 3 | pre-commit 4 | pytest 5 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile-archive/future-fstrings/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile-archive/future-fstrings/HEAD/setup.py -------------------------------------------------------------------------------- /testing/fix_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile-archive/future-fstrings/HEAD/testing/fix_coverage.py -------------------------------------------------------------------------------- /testing/remove_pycdir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile-archive/future-fstrings/HEAD/testing/remove_pycdir.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/future_fstrings_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile-archive/future-fstrings/HEAD/tests/future_fstrings_test.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asottile-archive/future-fstrings/HEAD/tox.ini --------------------------------------------------------------------------------