├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── codecov.yml ├── mypy.ini ├── pyproject.toml ├── setup.cfg ├── setup.py ├── src └── retype │ ├── __init__.py │ ├── __main__.py │ ├── config.py │ └── retype_hgext.py ├── tests ├── test_discovery.py ├── test_entry_points.py └── test_retype.py ├── tox.ini └── types ├── .flake8 ├── setup.pyi ├── src └── retype │ ├── __init__.pyi │ ├── __main__.pyi │ ├── config.pyi │ ├── retype_hgext.pyi │ └── version.pyi └── tests ├── test_discovery.pyi ├── test_entry_points.pyi └── test_retype.pyi /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambv/retype/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambv/retype/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambv/retype/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambv/retype/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambv/retype/HEAD/codecov.yml -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambv/retype/HEAD/mypy.ini -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambv/retype/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambv/retype/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambv/retype/HEAD/setup.py -------------------------------------------------------------------------------- /src/retype/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambv/retype/HEAD/src/retype/__init__.py -------------------------------------------------------------------------------- /src/retype/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambv/retype/HEAD/src/retype/__main__.py -------------------------------------------------------------------------------- /src/retype/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambv/retype/HEAD/src/retype/config.py -------------------------------------------------------------------------------- /src/retype/retype_hgext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambv/retype/HEAD/src/retype/retype_hgext.py -------------------------------------------------------------------------------- /tests/test_discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambv/retype/HEAD/tests/test_discovery.py -------------------------------------------------------------------------------- /tests/test_entry_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambv/retype/HEAD/tests/test_entry_points.py -------------------------------------------------------------------------------- /tests/test_retype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambv/retype/HEAD/tests/test_retype.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambv/retype/HEAD/tox.ini -------------------------------------------------------------------------------- /types/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambv/retype/HEAD/types/.flake8 -------------------------------------------------------------------------------- /types/setup.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /types/src/retype/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambv/retype/HEAD/types/src/retype/__init__.pyi -------------------------------------------------------------------------------- /types/src/retype/__main__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambv/retype/HEAD/types/src/retype/__main__.pyi -------------------------------------------------------------------------------- /types/src/retype/config.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambv/retype/HEAD/types/src/retype/config.pyi -------------------------------------------------------------------------------- /types/src/retype/retype_hgext.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambv/retype/HEAD/types/src/retype/retype_hgext.pyi -------------------------------------------------------------------------------- /types/src/retype/version.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambv/retype/HEAD/types/src/retype/version.pyi -------------------------------------------------------------------------------- /types/tests/test_discovery.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambv/retype/HEAD/types/tests/test_discovery.pyi -------------------------------------------------------------------------------- /types/tests/test_entry_points.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambv/retype/HEAD/types/tests/test_entry_points.pyi -------------------------------------------------------------------------------- /types/tests/test_retype.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambv/retype/HEAD/types/tests/test_retype.pyi --------------------------------------------------------------------------------