Fixed common comments in initial commit

Some common comments from different members in initial repo
commit are fixed in this patch.

Change-Id: I3714dd1f95ac08cce88882e8029386268b8be3dd
This commit is contained in:
Sheel Rana 2016-05-13 18:06:40 +05:30
parent 274f489911
commit 7aa49e858f
9 changed files with 10 additions and 10 deletions

View File

@ -1,4 +1,4 @@
higgins Style Commandments Higgins Style Commandments
=============================================== ===============================================
Read the OpenStack Style Commandments http://docs.openstack.org/developer/hacking/ Read the OpenStack Style Commandments http://docs.openstack.org/developer/hacking/

View File

@ -1,10 +1,10 @@
=============================== =======
higgins Higgins
=============================== =======
Container Management service for OpenStack 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. 80 cols, so that distribution package maintainers can use it in their packages.
Note that this is a hard requirement. 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 * Documentation: http://docs.openstack.org/developer/higgins
* Source: http://git.openstack.org/cgit/openstack/higgins * Source: http://git.openstack.org/cgit/openstack/higgins
* Bugs: http://bugs.launchpad.net/python-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 Features
-------- --------

View File

@ -22,7 +22,6 @@ sys.path.insert(0, os.path.abspath('../..'))
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones. # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
extensions = [ extensions = [
'sphinx.ext.autodoc', 'sphinx.ext.autodoc',
#'sphinx.ext.intersphinx',
'oslosphinx' 'oslosphinx'
] ]

View File

@ -3,7 +3,7 @@
You can adapt this file completely to your liking, but it should at least You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive. contain the root `toctree` directive.
Welcome to higgins's documentation! Welcome to Higgins's documentation!
======================================================== ========================================================
Contents: Contents:

View File

@ -19,7 +19,7 @@ test_higgins
Tests for `higgins` module. Tests for `higgins` module.
""" """
from higgins.tests import base from higgins.tests.unit import base
class TestHiggins(base.TestCase): class TestHiggins(base.TestCase):

View File

@ -16,7 +16,6 @@ classifier =
Programming Language :: Python :: 2 Programming Language :: Python :: 2
Programming Language :: Python :: 2.7 Programming Language :: Python :: 2.7
Programming Language :: Python :: 3 Programming Language :: Python :: 3
Programming Language :: Python :: 3.3
Programming Language :: Python :: 3.4 Programming Language :: Python :: 3.4
[files] [files]

View File

@ -25,5 +25,5 @@ except ImportError:
pass pass
setuptools.setup( setuptools.setup(
setup_requires=['pbr'], setup_requires=['pbr>=1.8'],
pbr=True) pbr=True)