-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (33 loc) · 844 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
32
33
34
35
36
37
38
39
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
from setuptools import find_packages
requires = [
'google-api-python-client',
'httplib2',
'oauth2client',
'pyasn1',
'pyasn1-modules',
'rsa',
'six',
'uritemplate',
]
def main():
description = 'gswrap is wrapper libs for Google Sheet Rest API.'
setup(
name='gswrap',
version='0.0.2',
author='nabeen',
author_email='[email protected]',
url='https://github.com/nabeen/gswrap',
description=description,
long_description=description,
zip_safe=False,
include_package_data=True,
packages=find_packages(),
install_requires=requires,
tests_require=[],
setup_requires=[],
)
if __name__ == '__main__':
main()