-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
79 lines (67 loc) · 1.61 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
[tool.poetry]
name = "uno"
version = "0.9.1"
description = "Dynamic site-to-site VPNs with WireGuard, frrouting, and RTI Connext DDS"
authors = ["Andrea Sorbini <[email protected]>"]
readme = "README.md"
license = "Apache-2.0"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux"
]
packages = [
{ include = "uno" }
]
[tool.poetry.dependencies]
google-api-python-client = "^2.124.0"
google-auth-httplib2 = "^0.2.0"
google-auth-oauthlib = "^1.2.0"
Jinja2 = "^3.1.2"
pygments = "^2.17.2"
pymdown-extensions = "^10.7.1"
pytest = "^8.1"
python = "^3.9"
python-gnupg = "^0.5.2"
PyYAML = "^6.0"
markdown = "^3.6"
matplotlib = "^3.8.3"
networkx = "^3.2.1"
sdnotify = "^0.3.2"
tabulate = "^0.9.0"
termcolor = "^2.4.0"
[tool.poetry.group.connext]
optional = true
[tool.poetry.group.connext.dependencies]
"rti.connext" = "^7.1.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
docutils = "^0.18.1"
m2r = "^0.3.1"
mistune = "^0.8.4"
sphinx-autodoc-typehints = "^1.25.2"
sphinx-rtd-theme = "^1.3.0"
sphinxcontrib-programoutput = "^0.17"
sphinxemoji = "^0.2.0"
sphinx-tabs = "^3.4.4"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
ruff = "^0.3.7"
pre-commit = "^3.7.0"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
[tool.poetry.scripts]
uno = 'uno.cli.uno:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 100
indent-width = 2
target-version = "py39"
# [tool.ruff.lint]
# ignore = ["E741"]