aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorKenneth Reitz <me@kennethreitz.com>2011-04-13 18:14:26 -0400
committerKenneth Reitz <me@kennethreitz.com>2011-04-13 18:14:26 -0400
commitd17d5af0e8a01361463eb2032c5b9d53641496e8 (patch)
tree388052179003c05a2b1ba26932d47caba457c241 /setup.py
parentnow v3 (diff)
downloadpython-github3-d17d5af0e8a01361463eb2032c5b9d53641496e8.tar.xz
python-github3-d17d5af0e8a01361463eb2032c5b9d53641496e8.zip
basic setup
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py17
1 files changed, 7 insertions, 10 deletions
diff --git a/setup.py b/setup.py
index 7c3cf06..c5d2230 100644
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,8 @@
import os
import sys
-from distutils.core import setup
+# from distutils.core import setup
+from setuptools import setup, find_packages
import clint
@@ -18,21 +19,17 @@ if sys.argv[-1] == "publish":
publish()
sys.exit()
-required = []
+required = ['requests==0.3.1']
setup(
name='github3',
- version='0.0.0',
- description='[placeholder] Python wrapper for the github v3 api!',
- long_description='\n\n',
+ version='0.0.1',
+ description='Python wrapper for the github v3 api!',
+ long_description=open('README.rst').read(),
author='Kenneth Reitz',
author_email='me@kennethreitz.com',
url='https://github.com/kennethreitz/python-github3',
- packages= [
- 'clint',
- 'clint.textui',
- 'clint.packages', 'clint.packages.colorama'
- ],
+ packages= find_packages('github3'),
install_requires=required,
license='ISC',
classifiers=(