-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (45 loc) · 884 Bytes
/
Copy pathpyproject.toml
File metadata and controls
50 lines (45 loc) · 884 Bytes
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
[project]
name = "envoy_data_plane"
version = "2.2.0"
description = "Python dataclasses for the Envoy Data-Plane-API"
authors = [{ name = "Vasili Syrakis", email = "cetanu@gmail.com" }]
requires-python = ">=3.11, <4"
readme = "README.md"
license = "MIT"
dependencies = [
"betterproto2[all]>=0.9.0,<0.10"
]
[dependency-groups]
dev = [
"vedro",
]
[build-system]
build-backend = "hatchling.build"
requires = [
"hatchling",
"hatch-build-scripts",
"betterproto2-compiler>=0.9.0,<0.10",
"grpcio-tools>=1.75.1",
"requests",
"structlog",
]
[[tool.hatch.build.hooks.build-scripts.scripts]]
commands = [
"python build.py"
]
artifacts = [
"src/**/*.py",
]
[tool.hatch.build.targets.sdist]
include = [
"src/**/*.py",
"build.py",
]
exclude = [
"pyproject.toml",
"uv.lock",
"/.github",
"/scenarios",
"/dist",
"/BUILD",
]