forked from troiwill/mavros-px4-vehicle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (42 loc) · 983 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
[project]
name = "mavros_px4_vehicle"
version = "0.1.0"
authors = [
{ name="Troi Williams", email="[email protected]" },
]
description = "A ROS package for communicating with a PX4 autopilot using MAVROS."
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
keywords = [
"python",
"drone",
"quadcopter",
"python3",
"ros",
"px4",
"mavlink",
"gazebo",
"python2",
"quadrotor",
"mavros",
"melodic",
"ros-melodic",
"ros-noetic",
"noetic"
]
dependencies = [
"numpy>=1.23.2",
"scipy==1.9.0"
]
[project.urls]
"Homepage" = "https://github.com/troiwill/mavros-px4-vehicle"
"Bug Tracker" = "https://github.com/troiwill/mavros-px4-vehicle/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"