-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 803 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 803 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
[project]
name = "puresnmp-crypto"
version = "1.0.1.post1"
description = "Implementation for SNMPv3 encryption in puresnmp"
authors = [{name="Michel Albert", email="michel.albert@post.lu"}]
license = {text="MIT"}
readme = "README.rst"
dependencies = [
"cryptography >= 38.0.1",
]
[project.urls]
homepage = "https://pypi.org/project/puresnmp/"
repository = "https://github.com/exhuma/puresnmp-crypto"
[project.optional-dependencies]
dev = [
"mypy",
"black",
"pylint",
"sphinx",
"furo",
]
test = [
"pytest",
"pytest-cov",
]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--cov=puresnmp_plugins --cov-report=term-missing --cov-fail-under=100"
testpaths = [
"tests",
]
[build-system]
requires = ["setuptools >= 64.0"]
build-backend = "setuptools.build_meta"