Skip to content

Commit 1f377bc

Browse files
committed
Pypi environment by setuptools
1 parent 2e2e8bf commit 1f377bc

File tree

8 files changed

+73
-24
lines changed

8 files changed

+73
-24
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1-
*.py?
1+
*.py[co]
22
*.swp
3+
*.DS_STORE
4+
*.rope*
5+
MANIFEST

AUTHORS

Lines changed: 0 additions & 19 deletions
This file was deleted.

AUTHORS.rst

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
python-github3 is written and maintained by **David Medina** and
2+
various contributors:
3+
4+
Development Lead
5+
=================
6+
7+
- David Medina <[email protected]>
8+
- Francisco Marcos <[email protected]>
9+
10+
Forked and redesign from Kenneth Reitz's repo
11+
----------------------------------------------
12+
13+
Forked from https://github.com/kennethreitz/python-github3
14+
15+
Kenneth Reitz is also the author of the awesome `requests <https://github.com/kennethreitz/requests>`_ library
16+
which `python-github3` needs it
17+
18+
Patches and Suggestions
19+
.........................
20+
21+
- Mahdi Yusuf
22+
- Rok Garbas
23+
- Antti Kaihola <[email protected]>

LICENSE

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Copyright (c) 2012 David Medina
2+
3+
Permission to use, copy, modify, and/or distribute this software for any
4+
purpose with or without fee is hereby granted, provided that the above
5+
copyright notice and this permission notice appear in all copies.
6+
7+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
10+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
12+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
13+
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

README.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

README.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Python github3 wrapper
2+
=======================
3+
4+
Under heavy development
5+
File renamed without changes.

setup.py

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
#!/usr/bin/env python
2+
# -*- encoding: utf-8 -*-
3+
4+
from setuptools import setup, find_packages
5+
import pygithub3
6+
7+
setup(
8+
name='python-github3',
9+
version=pygithub3.__version__,
10+
author='David Medina',
11+
author_email='[email protected]',
12+
url='https://github.com/copitux/python-github3',
13+
description='Python wrapper for the github v3 api',
14+
long_description=open('README.rst').read(),
15+
license='ISC',
16+
packages=find_packages(),
17+
install_requires=map(str.strip, open('requirements.txt')),
18+
package_data={'': ['README.rst', 'AUTHORS.rst', 'LICENSE']},
19+
classifiers=(
20+
'Programming Language :: Python',
21+
'Programming Language :: Python :: 2.6',
22+
'Programming Language :: Python :: 2.7',
23+
'License :: OSI Approved :: ISC License (ISCL)',
24+
'Operating System :: OS Independent',
25+
'Development Status :: 1 - Planning',
26+
'Intended Audience :: Developers',
27+
),
28+
)

0 commit comments

Comments
 (0)