-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
62 lines (52 loc) · 1.45 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages]
find = {} # Scanning implicit namespaces is active by default
[project]
name = "peernet"
version = "0.0.1"
authors = [
{ name="Aditya Narayanan", email="[email protected]" },
]
description = "A utility for benchmarking networked robotics systems"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Linux",
]
dependencies = [
"pandas",
"pyzmq",
"click",
"omegaconf",
"tqdm",
"seaborn"
]
[project.optional-dependencies]
dev = ["black", "ruff", "mypy"]
test = ["pytest", "pytest-cov", "pytest-mock", "pdbpp"]
docs = ["mkdocs", "mkdocstrings[python]", "mkdocs-material"]
torch-inference = ["torch", "torchvision"]
franka = ["pynput", "imageio", "transforms3d"]
[project.entry-points.console_scripts]
peernet_cli = "peernet.cli:main"
cv_bench = "peernet.cli:main" #Supports legacy implementation
[project.urls]
"Homepage" = "https://github.com/UTAustin-SwarmLab/PEERNet"
"Bug Tracker" = "https://github.com/UTAustin-SwarmLab/PEERNet/issues"
[tool.black]
line-length = 80
[tool.ruff]
lint.select = [
"E", # pycodestyle
"F", # pyflakes
"UP", # pyupgrade
"D", # pydocstyle
]
lint.ignore = ["ANN101", "ANN102"]
extend-exclude = [".venv", "venv", "vscode"]
[tool.ruff.pydocstyle]
convention = "google"