-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.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.25",
"exceptiongroup==1.2.0",
"black==24.3.0",
"grpcio==1.62.1",
"grpcio-tools==1.62.1",
"iniconfig==2.0.0",
"Jinja2==3.1.3",
"MarkupSafe==2.1.5",
"numpy==1.26.4",
"packaging==24.0",
"pandas==2.2.2",
"pluggy==1.4.0",
"protobuf==4.25.3",
"pyarrow==15.0.2",
"pytest==8.1.1",
"python-dateutil==2.8.2",
"pytz==2024.1",
"six==1.16.0",
"structlog==23.3.0",
"tomli==2.0.1",
"tzdata==2023.4",
]
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.20",
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,
)