aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorDavid Medina <davidmedina9@gmail.com>2012-02-03 12:04:39 +0100
committerDavid Medina <davidmedina9@gmail.com>2012-02-03 13:51:52 +0100
commit1f377bc6ca467a8f7d4bedb6c7651f554e3c52ee (patch)
tree0f7fc0682ce9a230facd1272444dcdfc2d4eded0 /setup.py
parentComplete new redesign trying to code less coupled (diff)
downloadpython-github3-1f377bc6ca467a8f7d4bedb6c7651f554e3c52ee.tar.xz
python-github3-1f377bc6ca467a8f7d4bedb6c7651f554e3c52ee.zip
Pypi environment by setuptools
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py28
1 files changed, 28 insertions, 0 deletions
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',
+ ),
+)