-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
23 lines (21 loc) · 836 Bytes
/
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
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="looker_ingestion",
version="1.4.2",
description="Extracts adhoc queries from the Looker API to S3",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/open-toast/extract-looker-metadata",
packages=find_packages(),
entry_points={"console_scripts": ["extract_looker_metadata = looker_ingestion.sync_data:main"]},
install_requires=["boto3", "looker_sdk", "smart_open"],
setup_requires=["pytest-runner"],
tests_require=["pytest", "moto"],
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
],
)