aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorDavid Medina <davidmedina9@gmail.com>2012-02-06 20:19:42 +0100
committerDavid Medina <davidmedina9@gmail.com>2012-02-06 20:19:42 +0100
commit29d7c5641ce8a4099e23f50e965f1c483e993f39 (patch)
tree17c3e03c153beea88f213e3ae2fde80d4a67a473 /setup.py
parentUser service complete (diff)
downloadpython-github3-29d7c5641ce8a4099e23f50e965f1c483e993f39.tar.xz
python-github3-29d7c5641ce8a4099e23f50e965f1c483e993f39.zip
Rename ghrequest to requests
I think it's a redundant name. Only needs to move out from core module to avoid imports problems with `requests` library * Also change some in setup.py
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/setup.py b/setup.py
index c12d758..4b125b2 100644
--- a/setup.py
+++ b/setup.py
@@ -5,16 +5,17 @@ from setuptools import setup, find_packages
import pygithub3
setup(
- name='python-github3',
+ name=pygithub3.__name__,
version=pygithub3.__version__,
- author='David Medina',
- author_email='davidmedina9@gmail.com',
+ author=pygithub3.__author__,
+ author_email=pygithub3.__email__,
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(),
+ packages=find_packages(exclude=['*tests*']),
install_requires=map(str.strip, open('requirements.txt')),
+ include_package_data = True,
package_data={'': ['README.rst', 'AUTHORS.rst', 'LICENSE']},
classifiers=(
'Programming Language :: Python',