Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
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
stephenfin committed Oct 24, 2015
0 parents commit f19c067
Show file tree
Hide file tree
Showing 5 changed files with 96 additions and 0 deletions.
21 changes: 21 additions & 0 deletions LICENSE
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.
22 changes: 22 additions & 0 deletions README.rst
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/
11 changes: 11 additions & 0 deletions git_pw/cli.py
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()
34 changes: 34 additions & 0 deletions setup.conf
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
8 changes: 8 additions & 0 deletions setup.py
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,
)

0 comments on commit f19c067

Please sign in to comment.