-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
87 lines (80 loc) · 1.77 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
78
79
80
81
82
83
84
85
86
87
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ietf-dtn-demo-agent"
version = "0.0.0"
authors = [
{ name="Brian Sipos", email="[email protected]" },
]
description = "A demonstration agent for the DTN BPv7/TCPCLv4/UDPCLv2"
readme = "README.md"
license = { text="LGPL-3" }
requires-python = ">=3.7"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License (LGPL)",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"asn1",
"cbor2 >=4.1",
"pycose >=1.0.1",
"crcmod >=1.7",
"cryptography >=0.9",
"certvalidator",
"dbus-python",
"portion >=2.1",
"psutil",
"PyGObject >=3.34", # glib integration
"PyYAML",
"python3-dtls",
"scapy >=2.4,<2.4.5",
"six",
"zeroconf",
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"coverage",
]
pylint = [
"pylint",
"pylint_junit",
]
flake8 = [
"flake8",
"flake8_pyproject",
"flake8_formatter_junit_xml",
]
docs = [
"sphinx <6",
"sphinx_rtd_theme",
"sphinx-argparse",
]
container = [
"asn1",
"cryptography >=0.9",
]
[tool.pylint.MAIN]
load-plugins="pylint_junit"
suggestion-mode="no"
[tool.pylint.FORMAT]
max-line-length=100
[tool.pylint.DESIGN]
min-public-methods=1
[tool.flake8]
max-line-length=100
[project.scripts]
tcpcl-messagegen = "tcpcl.test.messagegen:main"
tcpcl-bundlegen = "tcpcl.test.bundlegen:main"
tcpcl-agent = "tcpcl.cmd:main"
udpcl-agent = "udpcl.cmd:main"
bp-agent = "bp.cmd:main"
[project.urls]
"Homepage" = "https://github.com/BrianSipos/dtn-demo-agent"
"Bug Tracker" = "https://github.com/BrianSipos/dtn-demo-agent/issues"