├── ENVIRONMENT.md ├── LICENSE ├── README.md ├── __init__.py ├── glitch ├── __init__.py └── glitch.py ├── requirements.txt └── setup.py /ENVIRONMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsqxyz/glitch/HEAD/ENVIRONMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsqxyz/glitch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsqxyz/glitch/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glitch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glitch/glitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsqxyz/glitch/HEAD/glitch/glitch.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | docopt==0.6.2 2 | 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trsqxyz/glitch/HEAD/setup.py --------------------------------------------------------------------------------