forked from gooddata/gooddata-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
64 lines (60 loc) · 1.73 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
# (C) 2021 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.31.0",
"pandas>=2.0.0,<3.0.0",
]
setup(
name="gooddata-pandas",
description="GoodData Cloud to pandas",
long_description=long_description,
long_description_content_type="text/markdown",
version="1.31.0",
author="GoodData",
author_email="[email protected]",
license="MIT",
license_file="LICENSE.txt",
license_files=("LICENSE.txt",),
install_requires=REQUIRES,
packages=find_packages(exclude=["tests*"]),
python_requires=">=3.9.0",
project_urls={
"Documentation": "https://gooddata-pandas.readthedocs.io/en/v1.31.0",
"Source": "https://github.com/gooddata/gooddata-python-sdk",
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"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",
"Topic :: Database",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
"Typing :: Typed",
],
keywords=[
"gooddata",
"pandas",
"series",
"data",
"frame",
"data_frame",
"analytics",
"headless",
"business",
"intelligence",
"headless-bi",
"cloud",
"native",
"semantic",
"layer",
"sql",
"metrics",
],
)