Browse Source
Oslo libraries are always in the oslo namespace, so they need the namespace package configured. Change-Id: Ib1077622c82cc771c39ab3e9d3ea58d2eb00c94fchanges/83/74383/1
34 changed files with 59 additions and 68 deletions
@ -1,6 +1,5 @@
|
||||
{ |
||||
"module_name": "replace with the name of the python module", |
||||
"module_name": "replace with the name of the package under oslo", |
||||
"repo_group": "openstack", |
||||
"repo_name": "replace with the name for the git repo", |
||||
"project_short_description": "OpenStack Boilerplate contains all the boilerplate you need to create an OpenStack package." |
||||
"project_short_description": "Oslo Boilerplate contains all the boilerplate you need to create an Oslo-branded library." |
||||
} |
||||
|
@ -0,0 +1,4 @@
|
||||
[gerrit] |
||||
host=review.openstack.org |
||||
port=29418 |
||||
project=openstack/oslo.{{cookiecutter.module_name}}.git |
@ -0,0 +1,13 @@
|
||||
=================================== |
||||
oslo.{{ cookiecutter.module_name }} |
||||
=================================== |
||||
|
||||
{{ cookiecutter.project_short_description}} |
||||
|
||||
* Free software: Apache license |
||||
* Documentation: http://docs.openstack.org/developer/oslo.{{ cookiecutter.module_name }} |
||||
|
||||
Features |
||||
-------- |
||||
|
||||
* TODO |
@ -0,0 +1,15 @@
|
||||
# vim: tabstop=4 shiftwidth=4 softtabstop=4 |
||||
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); you may |
||||
# not use this file except in compliance with the License. You may obtain |
||||
# a copy of the License at |
||||
# |
||||
# http://www.apache.org/licenses/LICENSE-2.0 |
||||
# |
||||
# Unless required by applicable law or agreed to in writing, software |
||||
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
||||
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
||||
# License for the specific language governing permissions and limitations |
||||
# under the License. |
||||
|
||||
__import__('pkg_resources').declare_namespace(__name__) |
@ -1,4 +0,0 @@
|
||||
[gerrit] |
||||
host=review.openstack.org |
||||
port=29418 |
||||
project={{cookiecutter.repo_group}}/{{cookiecutter.repo_name}}.git |
@ -1,13 +0,0 @@
|
||||
=============================== |
||||
{{ cookiecutter.repo_name }} |
||||
=============================== |
||||
|
||||
{{ cookiecutter.project_short_description}} |
||||
|
||||
* Free software: Apache license |
||||
* Documentation: http://docs.openstack.org/developer/{{ cookiecutter.repo_name }} |
||||
|
||||
Features |
||||
-------- |
||||
|
||||
* TODO |
@ -1,7 +0,0 @@
|
||||
[DEFAULT] |
||||
|
||||
# The list of modules to copy from oslo-incubator.git |
||||
module=install_venv_common |
||||
|
||||
# The base module to hold the copy of openstack.common |
||||
base={{cookiecutter.module_name}} |
@ -1,2 +0,0 @@
|
||||
pbr>=0.5.21,<1.0 |
||||
Babel>=0.9.6 |
@ -1,19 +0,0 @@
|
||||
# -*- coding: utf-8 -*- |
||||
|
||||
# Licensed under the Apache License, Version 2.0 (the "License"); you may |
||||
# not use this file except in compliance with the License. You may obtain |
||||
# a copy of the License at |
||||
# |
||||
# http://www.apache.org/licenses/LICENSE-2.0 |
||||
# |
||||
# Unless required by applicable law or agreed to in writing, software |
||||
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
||||
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
||||
# License for the specific language governing permissions and limitations |
||||
# under the License. |
||||
|
||||
import pbr.version |
||||
|
||||
|
||||
__version__ = pbr.version.VersionInfo( |
||||
'{{cookiecutter.module_name}}').version_string() |
Loading…
Reference in new issue