diff options
-rw-r--r-- | .gitignore | 5 | ||||
-rw-r--r-- | AUTHORS | 19 | ||||
-rw-r--r-- | AUTHORS.rst | 23 | ||||
-rw-r--r-- | LICENSE | 13 | ||||
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | README.rst | 5 | ||||
-rw-r--r-- | requirements.txt (renamed from reqs.txt) | 0 | ||||
-rw-r--r-- | setup.py | 28 |
8 files changed, 73 insertions, 24 deletions
@@ -1,2 +1,5 @@ -*.py? +*.py[co] *.swp +*.DS_STORE +*.rope* +MANIFEST diff --git a/AUTHORS b/AUTHORS deleted file mode 100644 index d16bd21..0000000 --- a/AUTHORS +++ /dev/null @@ -1,19 +0,0 @@ -python-github3 fork is written and maintained by David Medina and -various contributors: - -Development Lead -```````````````` - -- David Medina <davidmedina9@gmail.com> -- Francisco Marcos <fmarcos83@gmail.com> - ------------------------------------ -Inspired by Kenneth Reitz's fork ------------------------------------ - -Patches and Suggestions -``````````````````````` - -- Mahdi Yusuf -- Rok Garbas -- Antti Kaihola <akaihol+github@ambitone.com> diff --git a/AUTHORS.rst b/AUTHORS.rst new file mode 100644 index 0000000..866c7cc --- /dev/null +++ b/AUTHORS.rst @@ -0,0 +1,23 @@ +python-github3 is written and maintained by **David Medina** and +various contributors: + +Development Lead +================= + +- David Medina <davidmedina9@gmail.com> +- Francisco Marcos <fmarcos83@gmail.com> + +Forked and redesign from Kenneth Reitz's repo +---------------------------------------------- + +Forked from https://github.com/kennethreitz/python-github3 + +Kenneth Reitz is also the author of the awesome `requests <https://github.com/kennethreitz/requests>`_ library +which `python-github3` needs it + +Patches and Suggestions +......................... + +- Mahdi Yusuf +- Rok Garbas +- Antti Kaihola <akaihol+github@ambitone.com> @@ -0,0 +1,13 @@ +Copyright (c) 2012 David Medina + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/README.md b/README.md deleted file mode 100644 index 47d2653..0000000 --- a/README.md +++ /dev/null @@ -1,4 +0,0 @@ -# Python github3 wrapper - -Under heavy development - diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..86619b1 --- /dev/null +++ b/README.rst @@ -0,0 +1,5 @@ +Python github3 wrapper +======================= + +Under heavy development + diff --git a/reqs.txt b/requirements.txt index f229360..f229360 100644 --- a/reqs.txt +++ b/requirements.txt diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..c12d758 --- /dev/null +++ b/setup.py @@ -0,0 +1,28 @@ +#!/usr/bin/env python +# -*- encoding: utf-8 -*- + +from setuptools import setup, find_packages +import pygithub3 + +setup( + name='python-github3', + version=pygithub3.__version__, + author='David Medina', + author_email='davidmedina9@gmail.com', + url='https://github.com/copitux/python-github3', + description='Python wrapper for the github v3 api', + long_description=open('README.rst').read(), + license='ISC', + packages=find_packages(), + install_requires=map(str.strip, open('requirements.txt')), + package_data={'': ['README.rst', 'AUTHORS.rst', 'LICENSE']}, + classifiers=( + 'Programming Language :: Python', + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', + 'License :: OSI Approved :: ISC License (ISCL)', + 'Operating System :: OS Independent', + 'Development Status :: 1 - Planning', + 'Intended Audience :: Developers', + ), +) |