-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (37 loc) · 1.28 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
[tool.poetry]
name = "protobuf-pydantic-gen"
version = "0.1.5"
description = "A tool for converting between Pydantic models and Protobuf messages, specifically enabling the generation of Pydantic BaseModel classes from .proto files."
authors = ["vforfreedom96 <[email protected]>"]
readme = "README.md"
include = ["pydantic_protobuf_gen/*.j2"]
packages = [{include = "protobuf_pydantic_gen"}]
homepage = "https://github.com/begonia-org/pydantic-protobuf-gen"
repository = "https://github.com/begonia-org/pydantic-protobuf-gen.git"
documentation = "https://github.com/begonia-org/pydantic-protobuf-gen"
keywords = ["pydantic", "sqlmodel", "protobuf", "gRPC", "ORM"]
license = "Apache-2.0"
[tool.poetry.group.dev.dependencies]
twine = "^5.1.1"
[tool.poetry.dependencies]
python = "^3.8"
protobuf = "^4.21.12"
grpcio-tools = "^1.50.0"
grpcio = "^1.62.2"
pydantic = "^2.4.1"
jinja2 = "^3.1.3"
peewee = "^3.17.5"
sqlmodel = "^0.0.19"
inflection = "^0.5.1"
pydantic-core = "^2.20.0"
annotated-types = "^0.7.0"
autopep8 = "^2.3.1"
[[tool.poetry.source]]
name = "mirrors"
url = "https://pypi.tuna.tsinghua.edu.cn/simple/"
priority = "primary"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
protoc-gen-pydantic = 'protobuf_pydantic_gen.main:main'