-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (61 loc) · 1.73 KB
/
Copy pathpyproject.toml
File metadata and controls
68 lines (61 loc) · 1.73 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
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "pole-client-python"
version = "0.1.0"
description = "Framework-independent Python Thin SDK for Pole Sidecar"
readme = "README.md"
requires-python = ">=3.9"
license = "BSD-3-Clause"
license-files = ["LICENSE"]
authors = [
{ name = "Pole Mesh" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"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",
"Typing :: Typed",
]
dependencies = [
"grpcio>=1.71,<2",
"protobuf>=5.29,<6",
]
[project.optional-dependencies]
otel = [
"opentelemetry-api>=1.0,<2",
]
dev = [
"build>=1.2",
"grpcio-tools>=1.71,<2",
"opentelemetry-api>=1.0,<2",
]
[project.urls]
Homepage = "https://github.com/lattice-hub/pole-python"
Repository = "https://github.com/lattice-hub/pole-python/tree/develop/packages/pole-client-python"
Issues = "https://github.com/lattice-hub/pole-python/issues"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
pole_client = ["py.typed"]
[tool.setuptools.data-files]
"pole_client_contract" = [
"contract/VERSION",
"contract/SHA256SUMS",
"contract/bootstrap.proto",
"contract/schema.json",
"contract/conformance.json",
]
"pole_client_contract/traffic-context/v1" = [
"contract/traffic-context/v1/README.md",
"contract/traffic-context/v1/schema.json",
"contract/traffic-context/v1/conformance.json",
"contract/traffic-context/v1/SHA256SUMS",
]