├── .gitignore ├── Makefile ├── README.md ├── edir.py └── pyproject.toml /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | dist/ 3 | .idea/ 4 | .vscode/ 5 | *.egg-info/ 6 | __pycache__/ 7 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulletmark/edir/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulletmark/edir/HEAD/README.md -------------------------------------------------------------------------------- /edir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulletmark/edir/HEAD/edir.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulletmark/edir/HEAD/pyproject.toml --------------------------------------------------------------------------------