├── .gitignore ├── .landscape.yml ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── deps ├── core.txt ├── doc.txt └── test.txt ├── doc ├── Makefile ├── _static │ ├── logo.png │ └── logo32.png ├── conf.py ├── index.rst └── pages │ ├── config.rst │ ├── ext.rst │ ├── intro.rst │ ├── plugin.rst │ └── ref.rst ├── pylease ├── __init__.py ├── cmd │ ├── __init__.py │ ├── rollback.py │ └── task.py ├── ctxmgmt.py ├── ex.py ├── ext │ ├── __init__.py │ ├── git.py │ └── pypi.py ├── filemgmt.py ├── logger.py ├── main.py ├── releasemgmt.py ├── util.py └── vermgmt.py ├── setup.cfg ├── setup.py ├── static └── media │ └── logo.psd └── tests ├── __init__.py ├── test_command.py ├── test_ctxmgmt.py ├── test_filemgmt.py ├── test_main.py ├── test_releasemgmt.py ├── test_rollback.py ├── test_util.py └── test_vermgmt.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/.gitignore -------------------------------------------------------------------------------- /.landscape.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/.landscape.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include *.rst deps/* 2 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/README.rst -------------------------------------------------------------------------------- /deps/core.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/deps/doc.txt -------------------------------------------------------------------------------- /deps/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/deps/test.txt -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/doc/_static/logo.png -------------------------------------------------------------------------------- /doc/_static/logo32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/doc/_static/logo32.png -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/pages/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/doc/pages/config.rst -------------------------------------------------------------------------------- /doc/pages/ext.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/doc/pages/ext.rst -------------------------------------------------------------------------------- /doc/pages/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/doc/pages/intro.rst -------------------------------------------------------------------------------- /doc/pages/plugin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/doc/pages/plugin.rst -------------------------------------------------------------------------------- /doc/pages/ref.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/doc/pages/ref.rst -------------------------------------------------------------------------------- /pylease/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/pylease/__init__.py -------------------------------------------------------------------------------- /pylease/cmd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/pylease/cmd/__init__.py -------------------------------------------------------------------------------- /pylease/cmd/rollback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/pylease/cmd/rollback.py -------------------------------------------------------------------------------- /pylease/cmd/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/pylease/cmd/task.py -------------------------------------------------------------------------------- /pylease/ctxmgmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/pylease/ctxmgmt.py -------------------------------------------------------------------------------- /pylease/ex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/pylease/ex.py -------------------------------------------------------------------------------- /pylease/ext/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/pylease/ext/__init__.py -------------------------------------------------------------------------------- /pylease/ext/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/pylease/ext/git.py -------------------------------------------------------------------------------- /pylease/ext/pypi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/pylease/ext/pypi.py -------------------------------------------------------------------------------- /pylease/filemgmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/pylease/filemgmt.py -------------------------------------------------------------------------------- /pylease/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/pylease/logger.py -------------------------------------------------------------------------------- /pylease/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/pylease/main.py -------------------------------------------------------------------------------- /pylease/releasemgmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/pylease/releasemgmt.py -------------------------------------------------------------------------------- /pylease/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/pylease/util.py -------------------------------------------------------------------------------- /pylease/vermgmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/pylease/vermgmt.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/setup.py -------------------------------------------------------------------------------- /static/media/logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/static/media/logo.psd -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/tests/test_command.py -------------------------------------------------------------------------------- /tests/test_ctxmgmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/tests/test_ctxmgmt.py -------------------------------------------------------------------------------- /tests/test_filemgmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/tests/test_filemgmt.py -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/tests/test_main.py -------------------------------------------------------------------------------- /tests/test_releasemgmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/tests/test_releasemgmt.py -------------------------------------------------------------------------------- /tests/test_rollback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/tests/test_rollback.py -------------------------------------------------------------------------------- /tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/tests/test_util.py -------------------------------------------------------------------------------- /tests/test_vermgmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagrat/pylease/HEAD/tests/test_vermgmt.py --------------------------------------------------------------------------------