-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
83 lines (74 loc) · 2.26 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# -*- coding: utf-8 -*-
import os
import setuptools # type: ignore
package_root = os.path.abspath(os.path.dirname(__file__))
name = "cloudquery-plugin-sdk"
description = "CloudQuery Plugin SDK for Python"
dependencies = [
"cloudquery-plugin-pb==0.0.37",
"exceptiongroup==1.2.2",
"black==24.10.0",
"grpcio==1.67.1",
"grpcio-tools==1.67.1",
"iniconfig==2.0.0",
"Jinja2==3.1.4",
"MarkupSafe==3.0.2",
"numpy==2.1.2",
"packaging==24.1",
"pandas==2.2.3",
"pluggy==1.5.0",
"protobuf==5.28.3",
"pyarrow==18.0.0",
"pytest==8.3.3",
"python-dateutil>=2.8.1",
"pytz==2024.2",
"six==1.16.0",
"structlog==24.4.0",
"tomli==2.0.2",
"tzdata==2024.2",
]
url = "https://github.com/cloudquery/plugin-sdk-python"
long_description = """
CloudQuery Plugin SDK for Python
================================================
Overview
-----------
This is the high-level package to use for developing CloudQuery plugins in Python. See [github.com/cloudquery/plugin-sdk-python](https://github.com/cloudquery/plugin-sdk-python) for more information.
"""
packages = [
package
for package in setuptools.PEP420PackageFinder.find()
if package.startswith("cloudquery")
]
setuptools.setup(
name=name,
version="0.1.37",
description=description,
long_description=long_description,
author="CloudQuery LTD",
author_email="[email protected]",
license="MPL-2.0",
url=url,
classifiers=[
# release_status,
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Topic :: Internet",
],
platforms="Posix; MacOS X; Windows",
packages=packages,
python_requires=">=3.7",
namespace_packages=["cloudquery"],
install_requires=dependencies,
include_package_data=True,
package_data={"cloudquery": ["sdk/py.typed"]},
zip_safe=False,
)