From 1f377bc6ca467a8f7d4bedb6c7651f554e3c52ee Mon Sep 17 00:00:00 2001 From: David Medina Date: Fri, 3 Feb 2012 12:04:39 +0100 Subject: Pypi environment by setuptools --- .gitignore | 5 ++++- AUTHORS | 19 ------------------- AUTHORS.rst | 23 +++++++++++++++++++++++ LICENSE | 13 +++++++++++++ README.md | 4 ---- README.rst | 5 +++++ reqs.txt | 1 - requirements.txt | 1 + setup.py | 28 ++++++++++++++++++++++++++++ 9 files changed, 74 insertions(+), 25 deletions(-) delete mode 100644 AUTHORS create mode 100644 AUTHORS.rst create mode 100644 LICENSE delete mode 100644 README.md create mode 100644 README.rst delete mode 100644 reqs.txt create mode 100644 requirements.txt create mode 100644 setup.py diff --git a/.gitignore b/.gitignore index fa80f46..0abbe71 100644 --- a/.gitignore +++ b/.gitignore @@ -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 -- Francisco Marcos - ------------------------------------ -Inspired by Kenneth Reitz's fork ------------------------------------ - -Patches and Suggestions -``````````````````````` - -- Mahdi Yusuf -- Rok Garbas -- Antti Kaihola 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 +- Francisco Marcos + +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 `_ library +which `python-github3` needs it + +Patches and Suggestions +......................... + +- Mahdi Yusuf +- Rok Garbas +- Antti Kaihola diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..8100337 --- /dev/null +++ b/LICENSE @@ -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/reqs.txt deleted file mode 100644 index f229360..0000000 --- a/reqs.txt +++ /dev/null @@ -1 +0,0 @@ -requests diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..f229360 --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +requests 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', + ), +) -- cgit v1.3-14-g43fede