-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 722 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (31 loc) · 722 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
[build-system]
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"
[project]
name = "robogreeno-cloud"
version = "0.1.0"
description = "Cloud layer for the RoboGreeno swarm robotics platform"
requires-python = ">=3.9"
dependencies = [
"pygame>=2.5",
"pydantic>=2.0",
"paho-mqtt>=1.6",
"pyyaml>=6.0",
"numpy>=1.24",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4",
"pytest-cov>=4.1",
"ruff>=0.4",
]
[tool.setuptools.packages.find]
include = ["simulator*", "comms*", "storage*", "server*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q --tb=short"
[tool.ruff]
line-length = 100
target-version = "py39"
[tool.ruff.lint]
select = ["E", "F", "I"]