File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed
Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 1+ # -*- coding: utf-8 -*-
2+
3+ from core import *
Original file line number Diff line number Diff line change 44import os
55import sys
66
7- from distutils .core import setup
7+ # from distutils.core import setup
8+ from setuptools import setup , find_packages
89
910import clint
1011
@@ -18,21 +19,17 @@ def publish():
1819 publish ()
1920 sys .exit ()
2021
21- required = []
22+ required = ['requests==0.3.1' ]
2223
2324setup (
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' ,
29303031 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 = (
You can’t perform that action at this time.
0 commit comments