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