diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..7193b3a --- /dev/null +++ b/LICENSE @@ -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. diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..14c81a9 --- /dev/null +++ b/README.rst @@ -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/ diff --git a/git_pw/cli.py b/git_pw/cli.py new file mode 100644 index 0000000..845c717 --- /dev/null +++ b/git_pw/cli.py @@ -0,0 +1,11 @@ +#!/usr/bin/env python + +from __future__ import print_function + + +def main(): + pass + + +if __name__ == '__main__': + main() diff --git a/setup.conf b/setup.conf new file mode 100644 index 0000000..bc58beb --- /dev/null +++ b/setup.conf @@ -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 = stephenfinucane@hotmail.com +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 diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..aa2d8a0 --- /dev/null +++ b/setup.py @@ -0,0 +1,8 @@ +#!/usr/bin/env python + +from setuptools import setup + +setup( + setup_requires=['pbr'], + pbr=True, +)