Skip to content

Commit 80f0e8f

Browse files
authored
Update project.toml
1 parent 0228c84 commit 80f0e8f

File tree

1 file changed

+14
-11
lines changed

1 file changed

+14
-11
lines changed

project.toml

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,22 @@
1-
[tool.poetry]
1+
[build-system]
2+
requires = ["hatchling"]
3+
build-backend = "hatchling.build"
4+
5+
[project]
26
name = "simple-rpc"
37
version = "0.0.1"
48
description = "Simple framework to create your own gRPC server with grpcio"
5-
authors = ["NF-coder"]
9+
authors = [
10+
{name = "NF-coder", email = "[email protected]"}
11+
]
612
license = "MIT License"
713
readme = "README.md"
814
packages = [
915
{ include = "SimpleRPC" },
1016
]
11-
12-
[tool.poetry.dependencies]
13-
python = "^3.12"
14-
grpcio = "~1.71.0"
15-
pydantic = "^2.8.2"
16-
17-
[build-system]
18-
requires = ["poetry-core"]
19-
build-backend = "poetry.core.masonry.api"
17+
requires-python = ">=3.8".
18+
dependencies = [
19+
"grpcio >= 1.71.0",
20+
"pydantic >= 2.8.0"
21+
]
22+
requires-python = ">=3.12"

0 commit comments

Comments
 (0)