From 7aa49e858f6b5d9e373165e36d81c35a18f822a2 Mon Sep 17 00:00:00 2001 From: Sheel Rana Date: Fri, 13 May 2016 18:06:40 +0530 Subject: [PATCH] Fixed common comments in initial commit Some common comments from different members in initial repo commit are fixed in this patch. Change-Id: I3714dd1f95ac08cce88882e8029386268b8be3dd --- HACKING.rst | 2 +- README.rst | 10 ++++++---- doc/source/conf.py | 1 - doc/source/index.rst | 2 +- higgins/tests/__init__.py | 0 higgins/tests/{ => unit}/base.py | 0 higgins/tests/{ => unit}/test_higgins.py | 2 +- setup.cfg | 1 - setup.py | 2 +- 9 files changed, 10 insertions(+), 10 deletions(-) delete mode 100644 higgins/tests/__init__.py rename higgins/tests/{ => unit}/base.py (100%) rename higgins/tests/{ => unit}/test_higgins.py (95%) diff --git a/HACKING.rst b/HACKING.rst index bd59ba32b..0ccf0f455 100644 --- a/HACKING.rst +++ b/HACKING.rst @@ -1,4 +1,4 @@ -higgins Style Commandments +Higgins Style Commandments =============================================== Read the OpenStack Style Commandments http://docs.openstack.org/developer/hacking/ diff --git a/README.rst b/README.rst index 99b291d82..b5a877b23 100644 --- a/README.rst +++ b/README.rst @@ -1,10 +1,10 @@ -=============================== -higgins -=============================== +======= +Higgins +======= Container Management service for OpenStack -Please feel here a long description which must be at least 3 lines wrapped on +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. @@ -12,6 +12,8 @@ Note that this is a hard requirement. * Documentation: http://docs.openstack.org/developer/higgins * Source: http://git.openstack.org/cgit/openstack/higgins * Bugs: http://bugs.launchpad.net/python-higgins +* Blueprints:** https://blueprints.launchpad.net/higgins +* REST Client:** http://git.openstack.org/cgit/openstack/python-higginsclient Features -------- diff --git a/doc/source/conf.py b/doc/source/conf.py index d746f5d30..86ee0021e 100755 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -22,7 +22,6 @@ sys.path.insert(0, os.path.abspath('../..')) # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones. extensions = [ 'sphinx.ext.autodoc', - #'sphinx.ext.intersphinx', 'oslosphinx' ] diff --git a/doc/source/index.rst b/doc/source/index.rst index 3b14be30b..b1b2753d2 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -3,7 +3,7 @@ You can adapt this file completely to your liking, but it should at least contain the root `toctree` directive. -Welcome to higgins's documentation! +Welcome to Higgins's documentation! ======================================================== Contents: diff --git a/higgins/tests/__init__.py b/higgins/tests/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/higgins/tests/base.py b/higgins/tests/unit/base.py similarity index 100% rename from higgins/tests/base.py rename to higgins/tests/unit/base.py diff --git a/higgins/tests/test_higgins.py b/higgins/tests/unit/test_higgins.py similarity index 95% rename from higgins/tests/test_higgins.py rename to higgins/tests/unit/test_higgins.py index 259ca8fc6..b97182905 100644 --- a/higgins/tests/test_higgins.py +++ b/higgins/tests/unit/test_higgins.py @@ -19,7 +19,7 @@ test_higgins Tests for `higgins` module. """ -from higgins.tests import base +from higgins.tests.unit import base class TestHiggins(base.TestCase): diff --git a/setup.cfg b/setup.cfg index f9a83cdee..c900fd437 100644 --- a/setup.cfg +++ b/setup.cfg @@ -16,7 +16,6 @@ classifier = Programming Language :: Python :: 2 Programming Language :: Python :: 2.7 Programming Language :: Python :: 3 - Programming Language :: Python :: 3.3 Programming Language :: Python :: 3.4 [files] diff --git a/setup.py b/setup.py index 056c16c2b..782bb21f0 100644 --- a/setup.py +++ b/setup.py @@ -25,5 +25,5 @@ except ImportError: pass setuptools.setup( - setup_requires=['pbr'], + setup_requires=['pbr>=1.8'], pbr=True)