-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 900 Bytes
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 900 Bytes
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
[build-system]
requires = ["poetry-core>=1.0.0a5"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "gnoi-proto"
version = "0.1.0a1"
description = "A python package containing gnoi proto specification and generated python code."
authors = ["Arun Babu Neelicattu <arun.neelicattu@gmail.com>"]
license = "APLv2"
packages = [
{ include = "gnoi", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.6"
protobuf = "^3.12.2"
grpcio = "^1.30.0"
betterproto = { version = "^2.0.0b1", allow-prereleases = true }
[tool.poetry.dev-dependencies]
grpcio-tools = "^1.30.0"
black = "^19.10b0"
pytest-grpc = "^0.8.0"
pytest = "^5.4.3"
betterproto = { version = "^2.0.0b1", allow-prereleases = true, extras = ["compiler"] }
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
(
\.git
| \.tox
| \.venv
| _build
| build
| dist
| \.eggs
| _pb2(_grpc)?\.py
)
'''