├── .gitignore ├── .travis.yml ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── mrcrypt ├── __init__.py ├── cli │ ├── __init__.py │ └── parser.py ├── main.py └── materials_manager.py ├── pylintrc ├── requirements.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── integration │ ├── README.rst │ ├── __init__.py │ └── test_i_cli.py ├── pylintrc ├── test_cli.py ├── test_legacy_compat_cmm.py └── test_parser.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aol/mrcrypt/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aol/mrcrypt/HEAD/.travis.yml -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aol/mrcrypt/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aol/mrcrypt/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md HISTORY.rst requirements.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aol/mrcrypt/HEAD/README.rst -------------------------------------------------------------------------------- /mrcrypt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aol/mrcrypt/HEAD/mrcrypt/__init__.py -------------------------------------------------------------------------------- /mrcrypt/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aol/mrcrypt/HEAD/mrcrypt/cli/__init__.py -------------------------------------------------------------------------------- /mrcrypt/cli/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aol/mrcrypt/HEAD/mrcrypt/cli/parser.py -------------------------------------------------------------------------------- /mrcrypt/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aol/mrcrypt/HEAD/mrcrypt/main.py -------------------------------------------------------------------------------- /mrcrypt/materials_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aol/mrcrypt/HEAD/mrcrypt/materials_manager.py -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aol/mrcrypt/HEAD/pylintrc -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aol/mrcrypt/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aol/mrcrypt/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aol/mrcrypt/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Dummy stub to make linters work better.""" 2 | -------------------------------------------------------------------------------- /tests/integration/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aol/mrcrypt/HEAD/tests/integration/README.rst -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | """Dummy stub to make linters work better.""" 2 | -------------------------------------------------------------------------------- /tests/integration/test_i_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aol/mrcrypt/HEAD/tests/integration/test_i_cli.py -------------------------------------------------------------------------------- /tests/pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aol/mrcrypt/HEAD/tests/pylintrc -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aol/mrcrypt/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_legacy_compat_cmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aol/mrcrypt/HEAD/tests/test_legacy_compat_cmm.py -------------------------------------------------------------------------------- /tests/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aol/mrcrypt/HEAD/tests/test_parser.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aol/mrcrypt/HEAD/tox.ini --------------------------------------------------------------------------------