-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
59 lines (50 loc) · 1.82 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import versioneer
from setuptools import find_packages, setup
NAME = "pydata-google-auth"
# versioning
cmdclass = versioneer.get_cmdclass()
def readme():
with open("README.rst") as f:
return f.read()
INSTALL_REQUIRES = [
"setuptools",
"google-auth >=1.25.0, <2.0dev; python_version<'3.0'",
"google-auth >=1.25.0, <3.0dev; python_version>='3.6'",
"google-auth-oauthlib >=0.4.0, <0.4.2dev; python_version<'3.0'",
"google-auth-oauthlib >=0.4.0; python_version>='3.6'",
]
setup(
name=NAME,
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="PyData helpers for authenticating to Google APIs",
long_description=readme(),
license="BSD License",
author="The PyData Development Team",
author_email="[email protected]",
url="https://github.com/pydata/pydata-google-auth",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: BSD License",
],
keywords="data",
install_requires=INSTALL_REQUIRES,
packages=find_packages(exclude=["contrib", "docs", "tests*"]),
test_suite="tests",
)