├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.rst ├── example.py ├── maga.py ├── requirements.txt ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whtsky/maga/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whtsky/maga/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whtsky/maga/HEAD/README.rst -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whtsky/maga/HEAD/example.py -------------------------------------------------------------------------------- /maga.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whtsky/maga/HEAD/maga.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | bencoder.pyx>=1.1.1 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whtsky/maga/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whtsky/maga/HEAD/setup.py --------------------------------------------------------------------------------