-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
46 lines (41 loc) · 1.23 KB
/
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
40
41
42
43
44
45
#!/usr/bin/python
from setuptools import setup
import sys
if __name__ == '__main__' and len(sys.argv) > 1 and sys.argv[1] == 'register':
import pypandoc
long_desc = pypandoc.convert('README.md', 'rst')
else:
long_desc = ''
setup(
name='gcat',
version='0.1.0',
description='OAuth wrapper and command line utility for interacting with Google Drive spreasheets',
long_description=long_desc,
url='http://www.github.com/embr/gcat',
author='Evan Rosen',
author_email='[email protected]',
entry_points = {
'console_scripts': [
'gcat = gcat:main',
]
},
install_requires=[
"oauth2client >= 1.0",
"google-api-python-client >= 1.0",
"httplib2 >= 0.7.6",
"pandas >= 0.9.0",
"PyYAML >= 3.10",
"openpyxl >=1.5.8"
],
include_package_data = True,
classifiers=[
'Topic :: Scientific/Engineering',
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Operating System :: Unix',
'Operating System :: MacOS :: MacOS X',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
]
)