File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed
Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change 1- import sys
1+ import os
22
33
4- try :
5- from setuptools import setup , find_packages
6- except ImportError :
7- from distutils .core import setup , find_packages
4+ from setuptools import setup
5+ from setuptools import find_packages
86
7+ here = os .path .abspath (os .path .dirname (__file__ ))
98
10- if sys .version_info <= (2 , 5 ):
11- raise Exception ('Requires Python Version 2.6 or above... exiting.' )
9+
10+ with open (os .path .join (here , 'README.rst' )) as f :
11+ README = f .read ()
1212
1313
1414REQUIREMENTS = [
2727 description = 'API Client library for Google Cloud' ,
2828 author = 'JJ Geewax' ,
2929 author_email = 'jj@geewax.org' ,
30+ long_description = README ,
3031 scripts = [],
3132 url = 'https://github.com/GoogleCloudPlatform/gcloud-python' ,
3233 packages = find_packages (),
You can’t perform that action at this time.
0 commit comments