-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Put in all the skeleton work for eventual upload to PyPi. Use pbr because it's made of awesomeness. Use MIT license because it's nice and short. Signed-off-by: Stephen Finucane <[email protected]>
- Loading branch information
0 parents
commit f19c067
Showing
5 changed files
with
96 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
The MIT License | ||
|
||
Copyright (c) 2015 Stephen Finucane http://that.guru/ | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
git-pw | ||
====== | ||
|
||
git-pw is a tool for integrating Git with `Patchwork`_, the web-based patch | ||
tracking system. | ||
|
||
Installation | ||
------------ | ||
|
||
To install ``git-pw``, use ``pip``: | ||
|
||
.. code-block:: bash | ||
$ pip install git-pw | ||
Documentation | ||
------------- | ||
|
||
Documentation is available on `Read the Docs`_. | ||
|
||
.. _`Patchwork`: http://jk.ozlabs.org/projects/patchwork/ | ||
.. _`Read the Docs`: https://git-pw.readthedocs.org/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/usr/bin/env python | ||
|
||
from __future__ import print_function | ||
|
||
|
||
def main(): | ||
pass | ||
|
||
|
||
if __name__ == '__main__': | ||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
[metadata] | ||
name = git-pw | ||
summary = Git-Patchwork integration tool | ||
description-file = README.rst | ||
license = MIT License | ||
classifiers = | ||
Programming Language :: Python :: 2 | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python | ||
Development Status :: 1 - Planning | ||
Environment :: Console | ||
Intended Audience :: Developers | ||
Intended Audience :: Information Technology | ||
License :: OSI Approved :: MIT License | ||
Operating System :: OS Independent | ||
keywords = git patchwork | ||
author = Stephen Finucane | ||
author-email = [email protected] | ||
home-page = https://git-pw.readthedocs.org/ | ||
project-url = https://git-pw.github.io/ | ||
|
||
[files] | ||
packages = | ||
git_pw | ||
|
||
[entry_points] | ||
console_scripts = | ||
git-pw = git_pw.cli:main | ||
|
||
[wheel] | ||
universal = 1 | ||
|
||
[pbr] | ||
warnerrors = True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/usr/bin/env python | ||
|
||
from setuptools import setup | ||
|
||
setup( | ||
setup_requires=['pbr'], | ||
pbr=True, | ||
) |