├── .coveragerc ├── .gitignore ├── .mypy.ini ├── LICENSE ├── MANIFEST.in ├── PKG-INFO.TXT ├── README.md ├── __init__.py ├── example.cfg ├── make_stub_files.cfg ├── make_stub_files.leo ├── make_stub_files.py ├── make_stub_files.pyi ├── pyproject.toml ├── scripts └── wax_off.py ├── setup.cfg └── theory.md /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edreamleo/make-stub-files/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edreamleo/make-stub-files/HEAD/.gitignore -------------------------------------------------------------------------------- /.mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edreamleo/make-stub-files/HEAD/.mypy.ini -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edreamleo/make-stub-files/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edreamleo/make-stub-files/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /PKG-INFO.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edreamleo/make-stub-files/HEAD/PKG-INFO.TXT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edreamleo/make-stub-files/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | # dummy file to make this folder a module. -------------------------------------------------------------------------------- /example.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edreamleo/make-stub-files/HEAD/example.cfg -------------------------------------------------------------------------------- /make_stub_files.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edreamleo/make-stub-files/HEAD/make_stub_files.cfg -------------------------------------------------------------------------------- /make_stub_files.leo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edreamleo/make-stub-files/HEAD/make_stub_files.leo -------------------------------------------------------------------------------- /make_stub_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edreamleo/make-stub-files/HEAD/make_stub_files.py -------------------------------------------------------------------------------- /make_stub_files.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edreamleo/make-stub-files/HEAD/make_stub_files.pyi -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edreamleo/make-stub-files/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/wax_off.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edreamleo/make-stub-files/HEAD/scripts/wax_off.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edreamleo/make-stub-files/HEAD/setup.cfg -------------------------------------------------------------------------------- /theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edreamleo/make-stub-files/HEAD/theory.md --------------------------------------------------------------------------------