Skip to content

Commit d17d5af

Browse files
author
Kenneth Reitz
committed
basic setup
1 parent 4bcfafd commit d17d5af

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

github3/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# -*- coding: utf-8 -*-
2+
3+
from core import *

setup.py

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
import os
55
import sys
66

7-
from distutils.core import setup
7+
# from distutils.core import setup
8+
from setuptools import setup, find_packages
89

910
import clint
1011

@@ -18,21 +19,17 @@ def publish():
1819
publish()
1920
sys.exit()
2021

21-
required = []
22+
required = ['requests==0.3.1']
2223

2324
setup(
2425
name='github3',
25-
version='0.0.0',
26-
description='[placeholder] Python wrapper for the github v3 api!',
27-
long_description='\n\n',
26+
version='0.0.1',
27+
description='Python wrapper for the github v3 api!',
28+
long_description=open('README.rst').read(),
2829
author='Kenneth Reitz',
2930
author_email='[email protected]',
3031
url='https://github.com/kennethreitz/python-github3',
31-
packages= [
32-
'clint',
33-
'clint.textui',
34-
'clint.packages', 'clint.packages.colorama'
35-
],
32+
packages= find_packages('github3'),
3633
install_requires=required,
3734
license='ISC',
3835
classifiers=(

0 commit comments

Comments
 (0)