forked from burnash/gspread
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
67 lines (55 loc) · 1.87 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
59
60
61
62
63
64
65
66
67
#!/usr/bin/env python
import os.path
import re
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if sys.argv[-1] == "publish":
os.system("python setup.py sdist bdist_wheel")
sys.exit()
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
description = "Google Spreadsheets Python API"
long_description = """
{index}
License
-------
MIT
"""
long_description = long_description.lstrip("\n").format(index=read("docs/index.txt"))
version = re.search(
r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', read("gspread/__init__.py"), re.MULTILINE
).group(1)
setup(
name="gspread",
packages=["gspread"],
description=description,
long_description=long_description,
version=version,
author="Anton Burnashev",
author_email="[email protected]",
maintainer="Alexandre Lavigne",
maintainer_email="[email protected]",
url="https://github.com/burnash/gspread",
keywords=["spreadsheets", "google-spreadsheets"],
install_requires=["google-auth>=1.12.0", "google-auth-oauthlib>=0.4.1"],
python_requires=">=3.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"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",
)