Apply cookiecutter defaults
Launchpad points to https://launchpad.net/openstack-ci which I assume is a catch all. [setup.cfg] * skipped files.packages section which is unneeded * removed obsolete pbr global.setup-hooks Change-Id: I26bddf6a1bb1ce7a10ea0f8d9f40a916dcba0c90
This commit is contained in:
parent
9809fbe25f
commit
ee4d151ade
9
.gitignore
vendored
9
.gitignore
vendored
@ -1,6 +1,15 @@
|
|||||||
|
# Packages
|
||||||
|
*.egg-info
|
||||||
|
|
||||||
.tox
|
.tox
|
||||||
build/*
|
build/*
|
||||||
*.pyc
|
*.pyc
|
||||||
gerritlib/versioninfo
|
gerritlib/versioninfo
|
||||||
|
|
||||||
|
# pbr generates these
|
||||||
|
AUTHORS
|
||||||
|
ChangeLog
|
||||||
|
|
||||||
|
# Editors
|
||||||
*~
|
*~
|
||||||
.*.swp
|
.*.swp
|
||||||
|
17
CONTRIBUTING.rst
Normal file
17
CONTRIBUTING.rst
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
If you would like to contribute to the development of OpenStack,
|
||||||
|
you must follow the steps in the "If you're a developer, start here"
|
||||||
|
section of this page:
|
||||||
|
|
||||||
|
http://wiki.openstack.org/HowToContribute
|
||||||
|
|
||||||
|
Once those steps have been completed, changes to OpenStack
|
||||||
|
should be submitted for review via the Gerrit tool, following
|
||||||
|
the workflow documented at:
|
||||||
|
|
||||||
|
http://wiki.openstack.org/GerritWorkflow
|
||||||
|
|
||||||
|
Pull requests submitted through GitHub will be ignored.
|
||||||
|
|
||||||
|
Bugs should be filed on Launchpad, not GitHub:
|
||||||
|
|
||||||
|
https://bugs.launchpad.net/openstack-ci
|
4
HACKING.rst
Normal file
4
HACKING.rst
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
gerritlib Style Commandments
|
||||||
|
============================
|
||||||
|
|
||||||
|
Read the OpenStack Style Commandments http://docs.openstack.org/developer/hacking/
|
27
LICENSE
27
LICENSE
@ -173,30 +173,3 @@
|
|||||||
defend, and hold each Contributor harmless for any liability
|
defend, and hold each Contributor harmless for any liability
|
||||||
incurred by, or claims asserted against, such Contributor by reason
|
incurred by, or claims asserted against, such Contributor by reason
|
||||||
of your accepting any such warranty or additional liability.
|
of your accepting any such warranty or additional liability.
|
||||||
|
|
||||||
END OF TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
APPENDIX: How to apply the Apache License to your work.
|
|
||||||
|
|
||||||
To apply the Apache License to your work, attach the following
|
|
||||||
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
||||||
replaced with your own identifying information. (Don't include
|
|
||||||
the brackets!) The text should be enclosed in the appropriate
|
|
||||||
comment syntax for the file format. We also recommend that a
|
|
||||||
file or class name and description of purpose be included on the
|
|
||||||
same "printed page" as the copyright notice for easier
|
|
||||||
identification within third-party archives.
|
|
||||||
|
|
||||||
Copyright [yyyy] [name of copyright owner]
|
|
||||||
|
|
||||||
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.
|
|
||||||
|
17
README.rst
17
README.rst
@ -2,3 +2,20 @@ gerritlib
|
|||||||
=========
|
=========
|
||||||
|
|
||||||
A Python library for interacting with Gerrit.
|
A Python library for interacting with Gerrit.
|
||||||
|
|
||||||
|
Contributing
|
||||||
|
------------
|
||||||
|
|
||||||
|
To browse the latest code, see: https://git.openstack.org/cgit/openstack-infra/gerritlib/tree/
|
||||||
|
To clone the latest code, use `git clone git://git.openstack.org/openstack-infra/gerritlib`
|
||||||
|
|
||||||
|
Bugs are handled at: https://launchpad.net/openstack-ci
|
||||||
|
|
||||||
|
Code reviews are, as you might expect, handled by gerrit. The gerrit they
|
||||||
|
use is http://review.openstack.org
|
||||||
|
|
||||||
|
Use `git review` to submit patches (after creating a gerrit account that links to your launchpad account). Example::
|
||||||
|
|
||||||
|
# Do your commits
|
||||||
|
$ git review
|
||||||
|
# Enter your username if prompted
|
||||||
|
@ -15,7 +15,3 @@ classifier =
|
|||||||
Programming Language :: Python :: 2
|
Programming Language :: Python :: 2
|
||||||
Programming Language :: Python :: 2.7
|
Programming Language :: Python :: 2.7
|
||||||
Programming Language :: Python :: 2.6
|
Programming Language :: Python :: 2.6
|
||||||
|
|
||||||
[global]
|
|
||||||
setup-hooks =
|
|
||||||
pbr.hooks.setup_hook
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user