forked from vperezb/google-api-support
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 833 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="google-api-support",
version="0.0.4",
author="Víctor Pérez Berruezo",
author_email="[email protected]",
description="In this package you will find functions to deal with google apis. Sheets, Drive and Slides",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/vperezb/google-api-support",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: Public Domain",
"Development Status :: 3 - Alpha",
],
install_requires = [
"google-api-python-client",
"httplib2",
"oauth2client",
"pandas",
],
)