-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
77 lines (70 loc) · 1.47 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools",
"wheel",
]
[project]
name = "aiognmi"
description = "Async, efficient and lightweight gNMI client written in Python."
readme = "README.md"
keywords = [
"automation",
"network",
"network-automation",
"gnmi",
"gnmi-client",
"grpc",
"grpc-python",
"async",
"python",
]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: AsyncIO",
]
license = { file = "LICENSE" }
authors = [
{email = "[email protected]"},
{name = "Artem Kotik"}
]
dependencies = [
"aiofile==3.8.8",
"grpcio==1.59.0",
"protobuf==4.24.4",
]
dynamic = [
"version",
]
[project.urls]
repository = "https://github.com/miaow2/aiognmi/"
homepage = "https://github.com/miaow2/aiognmi/"
[tool.setuptools.packages]
find = {}
[tool.setuptools.dynamic]
version = { attr = "aiognmi.__version__" }
[project.optional-dependencies]
dev = [
"ruff==0.3.4",
]
test = [
"pytest==8.1.1",
]
publish = [
"build==1.2.1",
"twine==4.0.2",
]
[tool.ruff]
exclude = ["__pycache__", "proto"]
lint.select = ["C", "E", "F", "I"]
lint.ignore = ["C901"]
line-length = 120
target-version = "py310"
[tool.pytest.ini_options]
addopts = "-p no:warnings -v"