forked from jasonmccsmith/google_dev_utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 636 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 636 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='google_dev_utils',
version='0.9',
description='Utilities to work with Google services',
long_description=readme(),
url='',
author='Elemental Reasoning',
author_email='jason@elementalreasoning.com',
license='MIT',
packages=['google_dev_utils'],
install_requires=[
'google-api-python-client',
'google-auth-oauthlib',
'errutils @ git+https://github.com/jasonmccsmith/errutils'
],
include_package_data=True,
zip_safe=False)