-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathsetup.py
51 lines (47 loc) · 1.45 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
# (C) 2023 GoodData Corporation
from pathlib import Path
from setuptools import find_packages, setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text(encoding="utf-8")
REQUIRES = [
"gooddata-sdk~=1.41.0",
"pyyaml>=6.0",
"attrs>=21.4.0,<=24.2.0",
"cattrs>=22.1.0,<=24.1.1",
"requests~=2.32.0",
"tabulate~=0.8.10",
]
setup(
name="gooddata-dbt",
description="dbt plugin for GoodData",
long_description=long_description,
long_description_content_type="text/markdown",
version="1.41.0",
author="GoodData",
license="MIT",
license_file="LICENSE.txt",
license_files=("LICENSE.txt",),
install_requires=REQUIRES,
packages=find_packages(exclude=["tests*"]),
python_requires=">=3.9.0",
scripts=[
"bin/gooddata-dbt",
],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Database",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
"Typing :: Typed",
],
keywords=[],
include_package_data=True,
)