├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── MANIFEST ├── README.md ├── cligenerator ├── __init__.py └── cligenerator.py ├── setup.cfg ├── setup.py └── tests ├── cli_func.py ├── cli_module.py ├── context.py ├── mymodule.py ├── test_function.py └── test_module.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharadwaj-raju/cligenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharadwaj-raju/cligenerator/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharadwaj-raju/cligenerator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharadwaj-raju/cligenerator/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharadwaj-raju/cligenerator/HEAD/MANIFEST -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharadwaj-raju/cligenerator/HEAD/README.md -------------------------------------------------------------------------------- /cligenerator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharadwaj-raju/cligenerator/HEAD/cligenerator/__init__.py -------------------------------------------------------------------------------- /cligenerator/cligenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharadwaj-raju/cligenerator/HEAD/cligenerator/cligenerator.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharadwaj-raju/cligenerator/HEAD/setup.py -------------------------------------------------------------------------------- /tests/cli_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharadwaj-raju/cligenerator/HEAD/tests/cli_func.py -------------------------------------------------------------------------------- /tests/cli_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharadwaj-raju/cligenerator/HEAD/tests/cli_module.py -------------------------------------------------------------------------------- /tests/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharadwaj-raju/cligenerator/HEAD/tests/context.py -------------------------------------------------------------------------------- /tests/mymodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharadwaj-raju/cligenerator/HEAD/tests/mymodule.py -------------------------------------------------------------------------------- /tests/test_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharadwaj-raju/cligenerator/HEAD/tests/test_function.py -------------------------------------------------------------------------------- /tests/test_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharadwaj-raju/cligenerator/HEAD/tests/test_module.py --------------------------------------------------------------------------------