-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
40 lines (36 loc) · 910 Bytes
/
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
[tool.poetry]
name = "protogen"
version = "0.3.1"
description = "protogen makes writing protoc plugins easy."
authors = ["fischor <fischor.sh@gmail.com>"]
maintainers = ["fischor <fischor.sh@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/fischor/protogen-python"
repository = "https://github.com/fischor/protogen-python"
keywords = [
"proto",
"protoc",
"Protobuf",
"Protocol buffers",
"Code generation",
]
[tool.poetry.dependencies]
python = ">=3.7,<4.0"
protobuf = ">=3.20.3"
[tool.poetry.dev-dependencies]
pylint = "^2.9.6"
Sphinx = "^4.1.2"
sphinx-rtd-theme = "^0.5.2"
black = "^21.7b0"
pydocstyle = "^6.1.1"
pytest = "^7.2.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pydocstyle]
inherit = false
convention = "numpy"
add_select = "D212,D402,D415,D417"
match_dir = "protogen"
match = ".*\\.py"