mirror of
https://github.com/kennethreitz/python-github3.git
synced 2026-06-05 23:10:17 +00:00
basic setup
This commit is contained in:
@@ -0,0 +1,3 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
from core import *
|
||||||
@@ -4,7 +4,8 @@
|
|||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
from distutils.core import setup
|
# from distutils.core import setup
|
||||||
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
import clint
|
import clint
|
||||||
|
|
||||||
@@ -18,21 +19,17 @@ if sys.argv[-1] == "publish":
|
|||||||
publish()
|
publish()
|
||||||
sys.exit()
|
sys.exit()
|
||||||
|
|
||||||
required = []
|
required = ['requests==0.3.1']
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='github3',
|
name='github3',
|
||||||
version='0.0.0',
|
version='0.0.1',
|
||||||
description='[placeholder] Python wrapper for the github v3 api!',
|
description='Python wrapper for the github v3 api!',
|
||||||
long_description='\n\n',
|
long_description=open('README.rst').read(),
|
||||||
author='Kenneth Reitz',
|
author='Kenneth Reitz',
|
||||||
author_email='me@kennethreitz.com',
|
author_email='me@kennethreitz.com',
|
||||||
url='https://github.com/kennethreitz/python-github3',
|
url='https://github.com/kennethreitz/python-github3',
|
||||||
packages= [
|
packages= find_packages('github3'),
|
||||||
'clint',
|
|
||||||
'clint.textui',
|
|
||||||
'clint.packages', 'clint.packages.colorama'
|
|
||||||
],
|
|
||||||
install_requires=required,
|
install_requires=required,
|
||||||
license='ISC',
|
license='ISC',
|
||||||
classifiers=(
|
classifiers=(
|
||||||
|
|||||||
Reference in New Issue
Block a user