├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── mgarch ├── __init__.py └── mgarch.py ├── setup.cfg └── setup.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srivastavaprashant/mgarch/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srivastavaprashant/mgarch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srivastavaprashant/mgarch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srivastavaprashant/mgarch/HEAD/README.md -------------------------------------------------------------------------------- /mgarch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srivastavaprashant/mgarch/HEAD/mgarch/__init__.py -------------------------------------------------------------------------------- /mgarch/mgarch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srivastavaprashant/mgarch/HEAD/mgarch/mgarch.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srivastavaprashant/mgarch/HEAD/setup.py --------------------------------------------------------------------------------