-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (56 loc) · 1.74 KB
/
pyproject.toml
File metadata and controls
60 lines (56 loc) · 1.74 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
[project]
name = "protoc-gen-connect-python"
version = "0.7.1"
description = "Code generator for connect-python"
maintainers = [
{ name = "Anuraag Agrawal", email = "anuraaga@gmail.com" },
{ name = "Spencer Nelson", email = "spencer@firetiger.com" },
{ name = "Stefan VanBuren", email = "svanburen@buf.build" },
{ name = "Yasushi Itoh", email = "i2y.may.roku@gmail.com" },
]
requires-python = ">= 3.10"
readme = "README.md"
license = "Apache-2.0"
keywords = [
"protoc",
"protobuf",
"protocol-buffers",
"code-generation",
"connect",
"connectrpc",
"connect-protocol",
"connect-rpc",
"rpc",
"compiler",
"plugin",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Go",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Compilers",
"Topic :: System :: Networking",
]
[project.urls]
Homepage = "https://github.com/connectrpc/connect-python"
Repository = "https://github.com/connectrpc/connect-python"
Issues = "https://github.com/connectrpc/connect-python/issues"
[dependency-groups]
dev = ["wheel"]
[build-system]
requires = ["uv_build>=0.8.13,<0.10.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "protoc_gen_connectrpc"
module-root = ""
data = { scripts = "out/bin" }