├── .gitignore ├── LICENSE ├── README.md ├── pyglom ├── __init__.py ├── glom.py └── glom_lightning.py ├── setup.cfg ├── setup.py └── upload_dist.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonwooSung/GLOM/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonwooSung/GLOM/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonwooSung/GLOM/HEAD/README.md -------------------------------------------------------------------------------- /pyglom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonwooSung/GLOM/HEAD/pyglom/__init__.py -------------------------------------------------------------------------------- /pyglom/glom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonwooSung/GLOM/HEAD/pyglom/glom.py -------------------------------------------------------------------------------- /pyglom/glom_lightning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonwooSung/GLOM/HEAD/pyglom/glom_lightning.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonwooSung/GLOM/HEAD/setup.py -------------------------------------------------------------------------------- /upload_dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YeonwooSung/GLOM/HEAD/upload_dist.sh --------------------------------------------------------------------------------