-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
40 lines (36 loc) · 1.17 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
[build-system]
requires = ["setuptools>=41", "wheel", "setuptools-git-versioning<2"]
build-backend = "setuptools.build_meta"
# https://setuptools-git-versioning.readthedocs.io/en/stable/install.html
[tool.setuptools-git-versioning]
enabled = true
[project]
name = "pycityproto"
authors = [
{ name = "Jun Zhang", email = "[email protected]" },
{ name = "Junbo Yan", email = "[email protected]" },
]
description = "City Proto Generated Python SDK"
keywords = ["city", "proto", "protobuf"]
readme = "README.md"
license = { file = "LICENSE" }
dynamic = ["version"]
requires-python = ">=3.8"
dependencies = [
'importlib-metadata; python_version<"3.8"',
"grpcio >= 1.60.0, < 2.0.0",
"protobuf >= 4.24.0, < 5.0.0",
"types-protobuf >= 4.24.0, < 5.0.0",
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/tsinghua-fib-lab/cityproto"
Documentation = "https://cityproto.sim.fiblab.net/"
Repository = "https://github.com/tsinghua-fib-lab/cityproto.git"
Issues = "https://github.com/tsinghua-fib-lab/cityproto/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["pycityproto*"]