-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
40 lines (34 loc) · 897 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 = "proto-plus-stubs"
version = "0.7.0"
license = "Apache-2.0"
description = "Type stubs for proto-plus"
authors = ["Henrik Bruåsdal <[email protected]>"]
readme = "README.md"
repository = "https://github.com/henribru/proto-plus-stubs"
packages = [
{ include = "proto-stubs" },
]
classifiers = [
"Typing :: Stubs Only",
]
[tool.poetry.dependencies]
python = "^3.7"
proto-plus = ">=1.18.0"
types-protobuf = ">=3.17.4"
[tool.poetry.group.dev.dependencies]
mypy = {version = "^1.7.0", python = "^3.8"}
black = {version = "^23.11.0", python = "^3.8"}
isort = {version = "^5.12.0", python = "^3.8"}
ruff = "^0.1.5"
[tool.isort]
profile = "black"
known_first_party = "proto"
combine_as_imports = true
[tool.ruff]
target-version = "py311"
[tool.ruff.lint]
select = ["UP"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"