-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 906 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
try:
long_description = open('README.md').read()
except IOError:
long_description = ""
setup(
name='google-python-sdk',
version='1.0.0',
description='Python Google API',
long_description=long_description,
url='https://github.com/rohitkhatri/google-python-sdk',
author='Rohit Khatri',
author_email='[email protected]',
license='GPL',
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
'Programming Language :: Python :: 3.5',
"Operating System :: OS Independent",
'Topic :: Software Development :: Libraries :: Python Modules'
],
keywords="google data api python",
packages=['google'],
install_requires=['requests']
)