├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── info.py ├── lib └── mvns │ └── bin │ └── mvns ├── requirements.txt ├── setup.py └── version.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotchemi/mvns/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotchemi/mvns/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotchemi/mvns/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotchemi/mvns/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotchemi/mvns/HEAD/README.md -------------------------------------------------------------------------------- /info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotchemi/mvns/HEAD/info.py -------------------------------------------------------------------------------- /lib/mvns/bin/mvns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotchemi/mvns/HEAD/lib/mvns/bin/mvns -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.4.1 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotchemi/mvns/HEAD/setup.py -------------------------------------------------------------------------------- /version.py: -------------------------------------------------------------------------------- 1 | # -*- coding:utf-8 -*- 2 | 3 | VERSION = "0.1.3" 4 | --------------------------------------------------------------------------------