-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (48 loc) · 1.8 KB
/
pyproject.toml
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
[build-system]
requires = [ "setuptools>=42", "wheel" ]
build-backend = "setuptools.build_meta"
[project]
name = "protoplasm"
dynamic = ["version"]
description = "Utilities for working with Protobuf & gRPC in Python."
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
authors = [
{ name = "Thordur Matthiasson", email = "[email protected]" },
{ name = "Daniel Maxson", email = "[email protected]" }
]
keywords = [ "protobuf", "proto", "dataclasses", "tools", "ccp", "utils" ]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities"
]
dependencies = [
"ccptools >= 1.1, <2",
"protobuf == 5.27.2",
"grpcio >=1.66.1, <2",
"grpcio-tools >=1.66.1, <2",
"googleapis-common-protos >=1.65, <2"
]
[project.urls]
Homepage = "https://github.com/ccpgames/protoplasm"
Documentation = "https://github.com/ccpgames/protoplasm/blob/main/README.md"
Repository = "https://github.com/ccpgames/protoplasm.git"
Issues = "https://github.com/ccpgames/protoplasm/issues"
Changelog = "https://github.com/ccpgames/protoplasm/blob/main/CHANGELOG.md"
[tool.setuptools.dynamic]
version = {attr = "protoplasm.__version__"}
[tool.setuptools.packages.find]
where = [ "." ]
exclude = [ "tests", "tests.*" ]