-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
45 lines (41 loc) · 928 Bytes
/
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
[project]
name = "mrover"
version = "2024.0.0"
description = "MRover Python Code"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE.md" }
maintainers = [
{ name = "Michigan Mars Rover Team" }
]
dependencies = [
# ROS dependencies
"rospkg==1.5.0",
"netifaces==0.11.0",
"defusedxml==0.7.1",
"empy==3.3.4",
# MRover dependencies
"pyyaml==6.0.1",
"Django==5.0.6",
"numpy==1.26.4",
"scipy==1.13.0",
"shapely==2.0.1",
"pyserial==3.5",
"moteus==0.3.70",
"pymap3d==3.0.1",
"daphne==4.0.0",
"channels==4.0.0",
"pyubx2==1.2.35",
]
[project.optional-dependencies]
dev = [
# If you update these, be sure to update the correspondig version checkers in style.sh
"black==24.4.2",
"mypy==1.10.0",
]
[project.urls]
"Homepage" = "https://mrover.org"
[build-system]
requires = ["setuptools", "rospkg"]
[tool.black]
line-length = 120