-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
34 lines (32 loc) · 1.22 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
from os.path import join
from setuptools import find_packages, setup
version_ns = {}
with open(join("carto_auth", "_version.py")) as f:
exec(f.read(), {}, version_ns)
setup(
name="carto-auth",
version=version_ns["__version__"],
description="Python library to authenticate with CARTO",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
keywords=["carto", "auth", "oauth", "carto-dw", "bigquery"],
author="CARTO",
author_email="[email protected]",
url="https://github.com/cartodb/carto-auth",
license="BSD 3-Clause",
packages=find_packages(exclude=["examples", "tests"]),
python_requires=">=3.7",
install_requires=["requests", "pyyaml"],
extras_require={"carto-dw": ["google-auth", "google-cloud-bigquery>=2.34.4"]},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
zip_safe=False,
)