-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (77 loc) · 2.35 KB
/
pyproject.toml
File metadata and controls
82 lines (77 loc) · 2.35 KB
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "drdroid-debug-toolkit"
version = "1.0.0"
description = "Integration toolkit for DrDroid platform with 40+ service integrations"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "DroidSpace", email = "support@droidspace.com"}
]
maintainers = [
{name = "DroidSpace", email = "support@droidspace.com"}
]
keywords = ["monitoring", "observability", "grafana", "signoz", "prometheus", "clickhouse"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Monitoring",
]
requires-python = ">=3.12"
dependencies = [
"PyYAML>=6.0.0",
"requests>=2.28.0",
"protobuf>=5.29.6",
"paramiko>=3.4.0",
"pandas>=2.3.3,<2.4",
"kubernetes>=26.0.0",
"boto3>=1.37.0",
"botocore>=1.37.0",
"awscli>=1.32.0",
"grpcio-tools==1.70.0",
"google-auth>=2.35.0",
"google-api-python-client>=2.146.0",
"google-cloud-bigquery>=3.25.0",
"clickhouse-connect>=0.6.0",
"pymongo>=4.6.3",
"psycopg2-binary>=2.9.0",
"PyMySQL>=1.1.0",
"sqlalchemy>=1.4.0",
"Django>=5.2,<6",
"djangorestframework>=3.15.0",
"elasticsearch>=8.15.0",
"gql>=3.5.0",
"slack_sdk>=3.36.0",
"openai>=1.35.0",
"opsgenie-sdk>=2.1.0",
"datadog-api-client>=2.15.0",
"requests-oauthlib>=2.0.0",
"requests-toolbelt>=1.0.0"
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=22.0.0",
"flake8>=5.0.0",
"mypy>=1.0.0",
"mypy-protobuf==3.4.0",
]
[project.urls]
Homepage = "https://github.com/DrDroidLab/drdroid-debug-toolkit"
Documentation = "https://github.com/DrDroidLab/drdroid-debug-toolkit/blob/main/README.md"
Repository = "https://github.com/DrDroidLab/drdroid-debug-toolkit"
"Bug Tracker" = "https://github.com/DrDroidLab/drdroid-debug-toolkit/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["drdroid_debug_toolkit*"]
[tool.setuptools.package-data]
drdroid_debug_toolkit = ["*.yaml", "*.yml"]