├── .gitignore ├── LICENSE ├── README.md ├── README.rst ├── monica ├── __init__.py ├── config.py └── monica.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zephrys/monica/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zephrys/monica/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zephrys/monica/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zephrys/monica/HEAD/README.rst -------------------------------------------------------------------------------- /monica/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /monica/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zephrys/monica/HEAD/monica/config.py -------------------------------------------------------------------------------- /monica/monica.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zephrys/monica/HEAD/monica/monica.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zephrys/monica/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zephrys/monica/HEAD/setup.py --------------------------------------------------------------------------------