diff --git a/README.rst b/README.rst index 62f330a..5fa0ab7 100644 --- a/README.rst +++ b/README.rst @@ -1,19 +1,22 @@ -=============================== +=========== os_failures -=============================== +=========== OpenStack failures library -Please fill here a long description which must be at least 3 lines wrapped on -80 cols, so that distribution package maintainers can use it in their packages. -Note that this is a hard requirement. +This is a library. It does different destructive actions against OpenStack +cloud. It is an abstraction layer, actions are implemented as drivers +(e.g. Fuel driver, KVM driver, IPMI driver). * Free software: Apache license -* Documentation: http://docs.openstack.org/developer/os_failures -* Source: http://git.openstack.org/cgit/openstack/os_failures +* Documentation: http://os_failures.readthedocs.io +* Source: https://github.com/shakhat/os-failures * Bugs: http://bugs.launchpad.net/os_failures -Features --------- +Sample usage +------------ -* TODO +.. code-block:: python + + failures_client = os_failures.build_client(cloud_params) + failures_client.kill_rabbitmq() diff --git a/setup.cfg b/setup.cfg index 2b33444..1e72b6e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -16,8 +16,7 @@ classifier = Programming Language :: Python :: 2 Programming Language :: Python :: 2.7 Programming Language :: Python :: 3 - Programming Language :: Python :: 3.3 - Programming Language :: Python :: 3.4 + Programming Language :: Python :: 3.5 [files] packages = diff --git a/tox.ini b/tox.ini index 1f9b76f..76f9310 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 2.0 -envlist = py34-constraints,py27-constraints,pypy-constraints,pep8-constraints +envlist = py35-constraints,py27-constraints,pep8-constraints skipsdist = True [testenv]