-
Notifications
You must be signed in to change notification settings - Fork 40
/
setup.py
58 lines (52 loc) · 1.55 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
46
47
48
49
50
51
52
53
54
55
56
57
58
import io
import re
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with io.open('sheetfu/__init__.py', 'rt', encoding='utf8') as f:
version = re.search(
r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
f.read(),
re.MULTILINE
).group(1)
try:
from semantic_release import setup_hook
setup_hook(sys.argv)
except ImportError:
pass
setup(
name='sheetfu',
packages=['sheetfu', 'sheetfu.modules'],
description='Sheetfu is a library to interact with Google sheets.',
long_description=open('README.rst', 'r').read(),
version=version,
author='Philippe Oger',
author_email='[email protected]',
url='https://github.com/socialpoint-labs/sheetfu',
keywords=['spreadsheets', 'google-spreadsheets'],
install_requires=[
'google-api-python-client>=1.7.4,<2',
'oauth2client>=4.1.2'
],
extras_require={
'dev': [
'pytest>=3',
'coverage'
]
},
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"Topic :: Office/Business :: Financial :: Spreadsheet",
"Topic :: Software Development :: Libraries :: Python Modules"
],
license='MIT'
)