flightplotting 0.2.11__tar.gz → 0.2.12__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {flightplotting-0.2.11 → flightplotting-0.2.12}/PKG-INFO +2 -4
- flightplotting-0.2.12/pyproject.toml +23 -0
- {flightplotting-0.2.11 → flightplotting-0.2.12}/uv.lock +55 -194
- flightplotting-0.2.11/pyproject.toml +0 -31
- {flightplotting-0.2.11 → flightplotting-0.2.12}/.github/workflows/publish_pypi.yml +0 -0
- {flightplotting-0.2.11 → flightplotting-0.2.12}/.gitignore +0 -0
- {flightplotting-0.2.11 → flightplotting-0.2.12}/.vscode/settings.json +0 -0
- {flightplotting-0.2.11 → flightplotting-0.2.12}/COPYING +0 -0
- {flightplotting-0.2.11 → flightplotting-0.2.12}/MANIFEST.in +0 -0
- {flightplotting-0.2.11 → flightplotting-0.2.12}/README.md +0 -0
- {flightplotting-0.2.11 → flightplotting-0.2.12}/src/plotting/__init__.py +0 -0
- {flightplotting-0.2.11 → flightplotting-0.2.12}/src/plotting/data/ColdDraftF3APlane.obj +0 -0
- {flightplotting-0.2.11 → flightplotting-0.2.12}/src/plotting/data/__init__.py +0 -0
- {flightplotting-0.2.11 → flightplotting-0.2.12}/src/plotting/model.py +0 -0
- {flightplotting-0.2.11 → flightplotting-0.2.12}/src/plotting/plots.py +0 -0
- {flightplotting-0.2.11 → flightplotting-0.2.12}/src/plotting/py.typed +0 -0
- {flightplotting-0.2.11 → flightplotting-0.2.12}/src/plotting/templates.py +0 -0
- {flightplotting-0.2.11 → flightplotting-0.2.12}/src/plotting/titlerenderer.py +0 -0
- {flightplotting-0.2.11 → flightplotting-0.2.12}/src/plotting/traces.py +0 -0
- {flightplotting-0.2.11 → flightplotting-0.2.12}/tests/__init__.py +0 -0
- {flightplotting-0.2.11 → flightplotting-0.2.12}/tests/data/__init__.py +0 -0
- {flightplotting-0.2.11 → flightplotting-0.2.12}/tests/data/p23_flight.json +0 -0
- {flightplotting-0.2.11 → flightplotting-0.2.12}/tests/test_plots.py +0 -0
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: flightplotting
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.12
|
|
4
4
|
Summary: Add your description here
|
|
5
5
|
Author-email: Thomas David <thomasdavid0@gmail.com>
|
|
6
6
|
Requires-Python: >=3.12
|
|
7
|
-
Requires-Dist: flightanalysis>=0.3.
|
|
8
|
-
Requires-Dist: flightdata>=0.2.24
|
|
7
|
+
Requires-Dist: flightanalysis>=0.3.14
|
|
9
8
|
Requires-Dist: numpy>=2.1.3
|
|
10
9
|
Requires-Dist: pandas>=2.2.3
|
|
11
|
-
Requires-Dist: pfc-geometry
|
|
12
10
|
Requires-Dist: plotly>=5.24.1
|
|
13
11
|
Description-Content-Type: text/markdown
|
|
14
12
|
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "flightplotting"
|
|
3
|
+
version="v0.2.12"
|
|
4
|
+
description = "Add your description here"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
authors = [{ name = "Thomas David", email = "thomasdavid0@gmail.com" }]
|
|
7
|
+
requires-python = ">=3.12"
|
|
8
|
+
dependencies = [
|
|
9
|
+
"flightanalysis>=0.3.14",
|
|
10
|
+
"numpy>=2.1.3",
|
|
11
|
+
"pandas>=2.2.3",
|
|
12
|
+
"plotly>=5.24.1",
|
|
13
|
+
]
|
|
14
|
+
|
|
15
|
+
[build-system]
|
|
16
|
+
requires = ["hatchling"]
|
|
17
|
+
build-backend = "hatchling.build"
|
|
18
|
+
|
|
19
|
+
[tool.hatch.build.targets.wheel]
|
|
20
|
+
packages = ["src/plotting"]
|
|
21
|
+
|
|
22
|
+
[dependency-groups]
|
|
23
|
+
dev = ["pytest>=8.3.3"]
|
|
@@ -10,27 +10,6 @@ wheels = [
|
|
|
10
10
|
{ url = "https://files.pythonhosted.org/packages/78/b6/6307fbef88d9b5ee7421e68d78a9f162e0da4900bc5f5793f6d3d0e34fb8/annotated_types-0.7.0-py3-none-any.whl", hash = "sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53", size = 13643 },
|
|
11
11
|
]
|
|
12
12
|
|
|
13
|
-
[[package]]
|
|
14
|
-
name = "ardupilot-log-reader"
|
|
15
|
-
version = "0.3.5"
|
|
16
|
-
source = { editable = "../ArdupilotLogReader" }
|
|
17
|
-
dependencies = [
|
|
18
|
-
{ name = "numpy" },
|
|
19
|
-
{ name = "pandas" },
|
|
20
|
-
{ name = "pymavlink" },
|
|
21
|
-
]
|
|
22
|
-
|
|
23
|
-
[package.metadata]
|
|
24
|
-
requires-dist = [
|
|
25
|
-
{ name = "numpy", specifier = ">=2.1.3" },
|
|
26
|
-
{ name = "pandas", specifier = ">=2.2.3" },
|
|
27
|
-
{ name = "pymavlink", specifier = ">=2.4.42" },
|
|
28
|
-
]
|
|
29
|
-
|
|
30
|
-
[package.metadata.requires-dev]
|
|
31
|
-
dev = [{ name = "pytest", specifier = ">=8.3.3" }]
|
|
32
|
-
lint = [{ name = "ruff", specifier = ">=0.7.3" }]
|
|
33
|
-
|
|
34
13
|
[[package]]
|
|
35
14
|
name = "colorama"
|
|
36
15
|
version = "0.4.6"
|
|
@@ -51,8 +30,8 @@ sdist = { url = "https://files.pythonhosted.org/packages/99/43/30f2d8db076f216b1
|
|
|
51
30
|
|
|
52
31
|
[[package]]
|
|
53
32
|
name = "flightanalysis"
|
|
54
|
-
version = "0.3.
|
|
55
|
-
source = {
|
|
33
|
+
version = "0.3.14"
|
|
34
|
+
source = { registry = "https://pypi.org/simple" }
|
|
56
35
|
dependencies = [
|
|
57
36
|
{ name = "fastdtw" },
|
|
58
37
|
{ name = "flightdata" },
|
|
@@ -61,56 +40,27 @@ dependencies = [
|
|
|
61
40
|
{ name = "loguru" },
|
|
62
41
|
{ name = "numpy" },
|
|
63
42
|
{ name = "pandas" },
|
|
64
|
-
{ name = "pfc-geometry" },
|
|
65
43
|
{ name = "pfcschemas" },
|
|
66
44
|
{ name = "scipy" },
|
|
67
45
|
{ name = "simplejson" },
|
|
68
46
|
]
|
|
69
|
-
|
|
70
|
-
[
|
|
71
|
-
|
|
72
|
-
{ name = "fastdtw", specifier = ">=0.3.4" },
|
|
73
|
-
{ name = "flightdata", editable = "../FlightData" },
|
|
74
|
-
{ name = "joblib", specifier = ">=1.4.2" },
|
|
75
|
-
{ name = "json-stream", specifier = ">=2.3.2" },
|
|
76
|
-
{ name = "loguru", specifier = ">=0.7.2" },
|
|
77
|
-
{ name = "numpy", specifier = ">=2.1.3" },
|
|
78
|
-
{ name = "pandas", specifier = ">=2.2.3" },
|
|
79
|
-
{ name = "pfc-geometry", editable = "../geometry" },
|
|
80
|
-
{ name = "pfcschemas", editable = "../Schemas" },
|
|
81
|
-
{ name = "scipy", specifier = ">=1.14.1" },
|
|
82
|
-
{ name = "simplejson", specifier = ">=3.19.3" },
|
|
83
|
-
]
|
|
84
|
-
|
|
85
|
-
[package.metadata.requires-dev]
|
|
86
|
-
dev = [
|
|
87
|
-
{ name = "ardupilot-log-reader", editable = "../ArdupilotLogReader" },
|
|
88
|
-
{ name = "pymavlink", specifier = ">=2.4.42" },
|
|
89
|
-
{ name = "pytest", specifier = ">=8.3.3" },
|
|
47
|
+
sdist = { url = "https://files.pythonhosted.org/packages/2c/67/ad018e2f0664d587512e19cb52b43da7c8890bf73f2c6ba4a583a86cc014/flightanalysis-0.3.14.tar.gz", hash = "sha256:3bafb5304c280172e80bfd191b16a3f3ff1c97118d4aebd822538d900c3636ac", size = 23696186 }
|
|
48
|
+
wheels = [
|
|
49
|
+
{ url = "https://files.pythonhosted.org/packages/1b/e7/5299afd2b6c8941136bf73f68265cced3ef144c0edec4d1cdb75004a2218/flightanalysis-0.3.14-py3-none-any.whl", hash = "sha256:8fea47338514ca391738d64dbf2040943fd9d969b6835e5a3def7b12cc1791e2", size = 83900 },
|
|
90
50
|
]
|
|
91
51
|
|
|
92
52
|
[[package]]
|
|
93
53
|
name = "flightdata"
|
|
94
|
-
version = "0.2.
|
|
95
|
-
source = {
|
|
54
|
+
version = "0.2.25"
|
|
55
|
+
source = { registry = "https://pypi.org/simple" }
|
|
96
56
|
dependencies = [
|
|
97
57
|
{ name = "numpy" },
|
|
98
58
|
{ name = "pandas" },
|
|
99
59
|
{ name = "pfc-geometry" },
|
|
100
60
|
]
|
|
101
|
-
|
|
102
|
-
[
|
|
103
|
-
|
|
104
|
-
{ name = "numpy", specifier = ">=2.1.3" },
|
|
105
|
-
{ name = "pandas", specifier = ">=2.2.3" },
|
|
106
|
-
{ name = "pfc-geometry", editable = "../geometry" },
|
|
107
|
-
]
|
|
108
|
-
|
|
109
|
-
[package.metadata.requires-dev]
|
|
110
|
-
dev = [
|
|
111
|
-
{ name = "ardupilot-log-reader", editable = "../ArdupilotLogReader" },
|
|
112
|
-
{ name = "pymavlink", specifier = ">=2.4.42" },
|
|
113
|
-
{ name = "pytest", specifier = ">=8.3.3" },
|
|
61
|
+
sdist = { url = "https://files.pythonhosted.org/packages/f5/5b/dd6b34a5b4c50eb541d393ea90f3ead9a58a10f0df4976f03d84e7b9390e/flightdata-0.2.25.tar.gz", hash = "sha256:dd0fb47383d3e9ade940b8b25683b38b65082c869f500bececdabf3b8cfcab06", size = 71868855 }
|
|
62
|
+
wheels = [
|
|
63
|
+
{ url = "https://files.pythonhosted.org/packages/b1/34/6f572e5a10a4a08c1243e3598fc895b07cb57cf1984b5d89982a70aa4ca2/flightdata-0.2.25-py3-none-any.whl", hash = "sha256:3d59bfd579d4f7e7d8b65877c2a7ef2175df28b4acd9d58a120b3c8fa156ce2a", size = 40005 },
|
|
114
64
|
]
|
|
115
65
|
|
|
116
66
|
[[package]]
|
|
@@ -119,45 +69,26 @@ version = "0.2.11"
|
|
|
119
69
|
source = { editable = "." }
|
|
120
70
|
dependencies = [
|
|
121
71
|
{ name = "flightanalysis" },
|
|
122
|
-
{ name = "flightdata" },
|
|
123
72
|
{ name = "numpy" },
|
|
124
73
|
{ name = "pandas" },
|
|
125
|
-
{ name = "pfc-geometry" },
|
|
126
74
|
{ name = "plotly" },
|
|
127
75
|
]
|
|
128
76
|
|
|
129
77
|
[package.dev-dependencies]
|
|
130
78
|
dev = [
|
|
131
|
-
{ name = "ardupilot-log-reader" },
|
|
132
|
-
{ name = "pymavlink" },
|
|
133
79
|
{ name = "pytest" },
|
|
134
80
|
]
|
|
135
81
|
|
|
136
82
|
[package.metadata]
|
|
137
83
|
requires-dist = [
|
|
138
|
-
{ name = "flightanalysis",
|
|
139
|
-
{ name = "flightdata", editable = "../FlightData" },
|
|
84
|
+
{ name = "flightanalysis", specifier = ">=0.3.14" },
|
|
140
85
|
{ name = "numpy", specifier = ">=2.1.3" },
|
|
141
86
|
{ name = "pandas", specifier = ">=2.2.3" },
|
|
142
|
-
{ name = "pfc-geometry", editable = "../geometry" },
|
|
143
87
|
{ name = "plotly", specifier = ">=5.24.1" },
|
|
144
88
|
]
|
|
145
89
|
|
|
146
90
|
[package.metadata.requires-dev]
|
|
147
|
-
dev = [
|
|
148
|
-
{ name = "ardupilot-log-reader", editable = "../ArdupilotLogReader" },
|
|
149
|
-
{ name = "pymavlink", specifier = ">=2.4.42" },
|
|
150
|
-
{ name = "pytest", specifier = ">=8.3.3" },
|
|
151
|
-
]
|
|
152
|
-
|
|
153
|
-
[[package]]
|
|
154
|
-
name = "future"
|
|
155
|
-
version = "1.0.0"
|
|
156
|
-
source = { registry = "https://pypi.org/simple" }
|
|
157
|
-
sdist = { url = "https://files.pythonhosted.org/packages/a7/b2/4140c69c6a66432916b26158687e821ba631a4c9273c474343badf84d3ba/future-1.0.0.tar.gz", hash = "sha256:bd2968309307861edae1458a4f8a4f3598c03be43b97521076aebf5d94c07b05", size = 1228490 }
|
|
158
|
-
wheels = [
|
|
159
|
-
{ url = "https://files.pythonhosted.org/packages/da/71/ae30dadffc90b9006d77af76b393cb9dfbfc9629f339fc1574a1c52e6806/future-1.0.0-py3-none-any.whl", hash = "sha256:929292d34f5872e70396626ef385ec22355a1fae8ad29e1a734c3e43f9fbc216", size = 491326 },
|
|
160
|
-
]
|
|
91
|
+
dev = [{ name = "pytest", specifier = ">=8.3.3" }]
|
|
161
92
|
|
|
162
93
|
[[package]]
|
|
163
94
|
name = "iniconfig"
|
|
@@ -218,48 +149,6 @@ wheels = [
|
|
|
218
149
|
{ url = "https://files.pythonhosted.org/packages/03/0a/4f6fed21aa246c6b49b561ca55facacc2a44b87d65b8b92362a8e99ba202/loguru-0.7.2-py3-none-any.whl", hash = "sha256:003d71e3d3ed35f0f8984898359d65b79e5b21943f78af86aa5491210429b8eb", size = 62549 },
|
|
219
150
|
]
|
|
220
151
|
|
|
221
|
-
[[package]]
|
|
222
|
-
name = "lxml"
|
|
223
|
-
version = "5.3.0"
|
|
224
|
-
source = { registry = "https://pypi.org/simple" }
|
|
225
|
-
sdist = { url = "https://files.pythonhosted.org/packages/e7/6b/20c3a4b24751377aaa6307eb230b66701024012c29dd374999cc92983269/lxml-5.3.0.tar.gz", hash = "sha256:4e109ca30d1edec1ac60cdbe341905dc3b8f55b16855e03a54aaf59e51ec8c6f", size = 3679318 }
|
|
226
|
-
wheels = [
|
|
227
|
-
{ url = "https://files.pythonhosted.org/packages/eb/6d/d1f1c5e40c64bf62afd7a3f9b34ce18a586a1cccbf71e783cd0a6d8e8971/lxml-5.3.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:e99f5507401436fdcc85036a2e7dc2e28d962550afe1cbfc07c40e454256a859", size = 8171753 },
|
|
228
|
-
{ url = "https://files.pythonhosted.org/packages/bd/83/26b1864921869784355459f374896dcf8b44d4af3b15d7697e9156cb2de9/lxml-5.3.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:384aacddf2e5813a36495233b64cb96b1949da72bef933918ba5c84e06af8f0e", size = 4441955 },
|
|
229
|
-
{ url = "https://files.pythonhosted.org/packages/e0/d2/e9bff9fb359226c25cda3538f664f54f2804f4b37b0d7c944639e1a51f69/lxml-5.3.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:874a216bf6afaf97c263b56371434e47e2c652d215788396f60477540298218f", size = 5050778 },
|
|
230
|
-
{ url = "https://files.pythonhosted.org/packages/88/69/6972bfafa8cd3ddc8562b126dd607011e218e17be313a8b1b9cc5a0ee876/lxml-5.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:65ab5685d56914b9a2a34d67dd5488b83213d680b0c5d10b47f81da5a16b0b0e", size = 4748628 },
|
|
231
|
-
{ url = "https://files.pythonhosted.org/packages/5d/ea/a6523c7c7f6dc755a6eed3d2f6d6646617cad4d3d6d8ce4ed71bfd2362c8/lxml-5.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aac0bbd3e8dd2d9c45ceb82249e8bdd3ac99131a32b4d35c8af3cc9db1657179", size = 5322215 },
|
|
232
|
-
{ url = "https://files.pythonhosted.org/packages/99/37/396fbd24a70f62b31d988e4500f2068c7f3fd399d2fd45257d13eab51a6f/lxml-5.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b369d3db3c22ed14c75ccd5af429086f166a19627e84a8fdade3f8f31426e52a", size = 4813963 },
|
|
233
|
-
{ url = "https://files.pythonhosted.org/packages/09/91/e6136f17459a11ce1757df864b213efbeab7adcb2efa63efb1b846ab6723/lxml-5.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c24037349665434f375645fa9d1f5304800cec574d0310f618490c871fd902b3", size = 4923353 },
|
|
234
|
-
{ url = "https://files.pythonhosted.org/packages/1d/7c/2eeecf87c9a1fca4f84f991067c693e67340f2b7127fc3eca8fa29d75ee3/lxml-5.3.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:62d172f358f33a26d6b41b28c170c63886742f5b6772a42b59b4f0fa10526cb1", size = 4740541 },
|
|
235
|
-
{ url = "https://files.pythonhosted.org/packages/3b/ed/4c38ba58defca84f5f0d0ac2480fdcd99fc7ae4b28fc417c93640a6949ae/lxml-5.3.0-cp312-cp312-manylinux_2_28_ppc64le.whl", hash = "sha256:c1f794c02903c2824fccce5b20c339a1a14b114e83b306ff11b597c5f71a1c8d", size = 5346504 },
|
|
236
|
-
{ url = "https://files.pythonhosted.org/packages/a5/22/bbd3995437e5745cb4c2b5d89088d70ab19d4feabf8a27a24cecb9745464/lxml-5.3.0-cp312-cp312-manylinux_2_28_s390x.whl", hash = "sha256:5d6a6972b93c426ace71e0be9a6f4b2cfae9b1baed2eed2006076a746692288c", size = 4898077 },
|
|
237
|
-
{ url = "https://files.pythonhosted.org/packages/0a/6e/94537acfb5b8f18235d13186d247bca478fea5e87d224644e0fe907df976/lxml-5.3.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:3879cc6ce938ff4eb4900d901ed63555c778731a96365e53fadb36437a131a99", size = 4946543 },
|
|
238
|
-
{ url = "https://files.pythonhosted.org/packages/8d/e8/4b15df533fe8e8d53363b23a41df9be907330e1fa28c7ca36893fad338ee/lxml-5.3.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:74068c601baff6ff021c70f0935b0c7bc528baa8ea210c202e03757c68c5a4ff", size = 4816841 },
|
|
239
|
-
{ url = "https://files.pythonhosted.org/packages/1a/e7/03f390ea37d1acda50bc538feb5b2bda6745b25731e4e76ab48fae7106bf/lxml-5.3.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:ecd4ad8453ac17bc7ba3868371bffb46f628161ad0eefbd0a855d2c8c32dd81a", size = 5417341 },
|
|
240
|
-
{ url = "https://files.pythonhosted.org/packages/ea/99/d1133ab4c250da85a883c3b60249d3d3e7c64f24faff494cf0fd23f91e80/lxml-5.3.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:7e2f58095acc211eb9d8b5771bf04df9ff37d6b87618d1cbf85f92399c98dae8", size = 5327539 },
|
|
241
|
-
{ url = "https://files.pythonhosted.org/packages/7d/ed/e6276c8d9668028213df01f598f385b05b55a4e1b4662ee12ef05dab35aa/lxml-5.3.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e63601ad5cd8f860aa99d109889b5ac34de571c7ee902d6812d5d9ddcc77fa7d", size = 5012542 },
|
|
242
|
-
{ url = "https://files.pythonhosted.org/packages/36/88/684d4e800f5aa28df2a991a6a622783fb73cf0e46235cfa690f9776f032e/lxml-5.3.0-cp312-cp312-win32.whl", hash = "sha256:17e8d968d04a37c50ad9c456a286b525d78c4a1c15dd53aa46c1d8e06bf6fa30", size = 3486454 },
|
|
243
|
-
{ url = "https://files.pythonhosted.org/packages/fc/82/ace5a5676051e60355bd8fb945df7b1ba4f4fb8447f2010fb816bfd57724/lxml-5.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:c1a69e58a6bb2de65902051d57fde951febad631a20a64572677a1052690482f", size = 3816857 },
|
|
244
|
-
{ url = "https://files.pythonhosted.org/packages/94/6a/42141e4d373903bfea6f8e94b2f554d05506dfda522ada5343c651410dc8/lxml-5.3.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8c72e9563347c7395910de6a3100a4840a75a6f60e05af5e58566868d5eb2d6a", size = 8156284 },
|
|
245
|
-
{ url = "https://files.pythonhosted.org/packages/91/5e/fa097f0f7d8b3d113fb7312c6308af702f2667f22644441715be961f2c7e/lxml-5.3.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e92ce66cd919d18d14b3856906a61d3f6b6a8500e0794142338da644260595cd", size = 4432407 },
|
|
246
|
-
{ url = "https://files.pythonhosted.org/packages/2d/a1/b901988aa6d4ff937f2e5cfc114e4ec561901ff00660c3e56713642728da/lxml-5.3.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d04f064bebdfef9240478f7a779e8c5dc32b8b7b0b2fc6a62e39b928d428e51", size = 5048331 },
|
|
247
|
-
{ url = "https://files.pythonhosted.org/packages/30/0f/b2a54f48e52de578b71bbe2a2f8160672a8a5e103df3a78da53907e8c7ed/lxml-5.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c2fb570d7823c2bbaf8b419ba6e5662137f8166e364a8b2b91051a1fb40ab8b", size = 4744835 },
|
|
248
|
-
{ url = "https://files.pythonhosted.org/packages/82/9d/b000c15538b60934589e83826ecbc437a1586488d7c13f8ee5ff1f79a9b8/lxml-5.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0c120f43553ec759f8de1fee2f4794452b0946773299d44c36bfe18e83caf002", size = 5316649 },
|
|
249
|
-
{ url = "https://files.pythonhosted.org/packages/e3/ee/ffbb9eaff5e541922611d2c56b175c45893d1c0b8b11e5a497708a6a3b3b/lxml-5.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:562e7494778a69086f0312ec9689f6b6ac1c6b65670ed7d0267e49f57ffa08c4", size = 4812046 },
|
|
250
|
-
{ url = "https://files.pythonhosted.org/packages/15/ff/7ff89d567485c7b943cdac316087f16b2399a8b997007ed352a1248397e5/lxml-5.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:423b121f7e6fa514ba0c7918e56955a1d4470ed35faa03e3d9f0e3baa4c7e492", size = 4918597 },
|
|
251
|
-
{ url = "https://files.pythonhosted.org/packages/c6/a3/535b6ed8c048412ff51268bdf4bf1cf052a37aa7e31d2e6518038a883b29/lxml-5.3.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:c00f323cc00576df6165cc9d21a4c21285fa6b9989c5c39830c3903dc4303ef3", size = 4738071 },
|
|
252
|
-
{ url = "https://files.pythonhosted.org/packages/7a/8f/cbbfa59cb4d4fd677fe183725a76d8c956495d7a3c7f111ab8f5e13d2e83/lxml-5.3.0-cp313-cp313-manylinux_2_28_ppc64le.whl", hash = "sha256:1fdc9fae8dd4c763e8a31e7630afef517eab9f5d5d31a278df087f307bf601f4", size = 5342213 },
|
|
253
|
-
{ url = "https://files.pythonhosted.org/packages/5c/fb/db4c10dd9958d4b52e34d1d1f7c1f434422aeaf6ae2bbaaff2264351d944/lxml-5.3.0-cp313-cp313-manylinux_2_28_s390x.whl", hash = "sha256:658f2aa69d31e09699705949b5fc4719cbecbd4a97f9656a232e7d6c7be1a367", size = 4893749 },
|
|
254
|
-
{ url = "https://files.pythonhosted.org/packages/f2/38/bb4581c143957c47740de18a3281a0cab7722390a77cc6e610e8ebf2d736/lxml-5.3.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:1473427aff3d66a3fa2199004c3e601e6c4500ab86696edffdbc84954c72d832", size = 4945901 },
|
|
255
|
-
{ url = "https://files.pythonhosted.org/packages/fc/d5/18b7de4960c731e98037bd48fa9f8e6e8f2558e6fbca4303d9b14d21ef3b/lxml-5.3.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a87de7dd873bf9a792bf1e58b1c3887b9264036629a5bf2d2e6579fe8e73edff", size = 4815447 },
|
|
256
|
-
{ url = "https://files.pythonhosted.org/packages/97/a8/cd51ceaad6eb849246559a8ef60ae55065a3df550fc5fcd27014361c1bab/lxml-5.3.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:0d7b36afa46c97875303a94e8f3ad932bf78bace9e18e603f2085b652422edcd", size = 5411186 },
|
|
257
|
-
{ url = "https://files.pythonhosted.org/packages/89/c3/1e3dabab519481ed7b1fdcba21dcfb8832f57000733ef0e71cf6d09a5e03/lxml-5.3.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:cf120cce539453ae086eacc0130a324e7026113510efa83ab42ef3fcfccac7fb", size = 5324481 },
|
|
258
|
-
{ url = "https://files.pythonhosted.org/packages/b6/17/71e9984cf0570cd202ac0a1c9ed5c1b8889b0fc8dc736f5ef0ffb181c284/lxml-5.3.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:df5c7333167b9674aa8ae1d4008fa4bc17a313cc490b2cca27838bbdcc6bb15b", size = 5011053 },
|
|
259
|
-
{ url = "https://files.pythonhosted.org/packages/69/68/9f7e6d3312a91e30829368c2b3217e750adef12a6f8eb10498249f4e8d72/lxml-5.3.0-cp313-cp313-win32.whl", hash = "sha256:c802e1c2ed9f0c06a65bc4ed0189d000ada8049312cfeab6ca635e39c9608957", size = 3485634 },
|
|
260
|
-
{ url = "https://files.pythonhosted.org/packages/7d/db/214290d58ad68c587bd5d6af3d34e56830438733d0d0856c0275fde43652/lxml-5.3.0-cp313-cp313-win_amd64.whl", hash = "sha256:406246b96d552e0503e17a1006fd27edac678b3fcc9f1be71a2f94b4ff61528d", size = 3814417 },
|
|
261
|
-
]
|
|
262
|
-
|
|
263
152
|
[[package]]
|
|
264
153
|
name = "numpy"
|
|
265
154
|
version = "2.1.3"
|
|
@@ -343,46 +232,31 @@ wheels = [
|
|
|
343
232
|
|
|
344
233
|
[[package]]
|
|
345
234
|
name = "pfc-geometry"
|
|
346
|
-
version = "0.2.
|
|
347
|
-
source = {
|
|
235
|
+
version = "0.2.14"
|
|
236
|
+
source = { registry = "https://pypi.org/simple" }
|
|
348
237
|
dependencies = [
|
|
349
238
|
{ name = "numpy" },
|
|
350
239
|
{ name = "pandas" },
|
|
351
240
|
]
|
|
352
|
-
|
|
353
|
-
[
|
|
354
|
-
|
|
355
|
-
{ name = "numpy", specifier = ">=2.1.3" },
|
|
356
|
-
{ name = "pandas", specifier = ">=2.2.3" },
|
|
357
|
-
]
|
|
358
|
-
|
|
359
|
-
[package.metadata.requires-dev]
|
|
360
|
-
dev = [
|
|
361
|
-
{ name = "numpy-quaternion", specifier = ">=2023.0.3" },
|
|
362
|
-
{ name = "pytest", specifier = ">=8.3.3" },
|
|
241
|
+
sdist = { url = "https://files.pythonhosted.org/packages/de/0c/3ae95787e090336c2ece1db5aab51d9cb27199740782c9d3054b02c61040/pfc_geometry-0.2.14.tar.gz", hash = "sha256:b2aae23e76be392672cc0ffa4df42c04d8bd9e8afbd9278218830b08d395112f", size = 28590 }
|
|
242
|
+
wheels = [
|
|
243
|
+
{ url = "https://files.pythonhosted.org/packages/c6/83/a3695b75079641bca55a04f61e9fae487376eae5741570a3c03f98cdfebf/pfc_geometry-0.2.14-py3-none-any.whl", hash = "sha256:bbe06fba3fad53d7116b253de9d987a071a4d38c4d909da7e79202871f324230", size = 19822 },
|
|
363
244
|
]
|
|
364
245
|
|
|
365
246
|
[[package]]
|
|
366
247
|
name = "pfcschemas"
|
|
367
|
-
version = "0.1.
|
|
368
|
-
source = {
|
|
248
|
+
version = "0.1.4"
|
|
249
|
+
source = { registry = "https://pypi.org/simple" }
|
|
369
250
|
dependencies = [
|
|
370
251
|
{ name = "numpy" },
|
|
371
252
|
{ name = "pandas" },
|
|
372
253
|
{ name = "pydantic" },
|
|
373
254
|
]
|
|
374
|
-
|
|
375
|
-
[
|
|
376
|
-
|
|
377
|
-
{ name = "numpy", specifier = ">=2.1.3" },
|
|
378
|
-
{ name = "pandas", specifier = ">=2.2.3" },
|
|
379
|
-
{ name = "pydantic", specifier = ">=2.9.2" },
|
|
255
|
+
sdist = { url = "https://files.pythonhosted.org/packages/13/68/8c5fa5ee4fc7ea423d116a74c759774e1fe6d29bf305dcc8e5ecdb2922cb/pfcschemas-0.1.4.tar.gz", hash = "sha256:549e9dd01c9ee3b59adc1feef7ca1163b3461920a9e1c9bafa11daf9fd1064f0", size = 3098799 }
|
|
256
|
+
wheels = [
|
|
257
|
+
{ url = "https://files.pythonhosted.org/packages/95/8a/7072dc34ed7e0397de584e8c453fc2c3c01571b71b37948d95af52445571/pfcschemas-0.1.4-py3-none-any.whl", hash = "sha256:da62cee733ddbf48f0c16c93863064b5ee46595267988c7303fe41f6755abad2", size = 9881 },
|
|
380
258
|
]
|
|
381
259
|
|
|
382
|
-
[package.metadata.requires-dev]
|
|
383
|
-
dev = [{ name = "pytest", specifier = ">=8.3.3" }]
|
|
384
|
-
lint = [{ name = "ruff", specifier = ">=0.7.3" }]
|
|
385
|
-
|
|
386
260
|
[[package]]
|
|
387
261
|
name = "plotly"
|
|
388
262
|
version = "5.24.1"
|
|
@@ -407,68 +281,55 @@ wheels = [
|
|
|
407
281
|
|
|
408
282
|
[[package]]
|
|
409
283
|
name = "pydantic"
|
|
410
|
-
version = "2.10.
|
|
284
|
+
version = "2.10.2"
|
|
411
285
|
source = { registry = "https://pypi.org/simple" }
|
|
412
286
|
dependencies = [
|
|
413
287
|
{ name = "annotated-types" },
|
|
414
288
|
{ name = "pydantic-core" },
|
|
415
289
|
{ name = "typing-extensions" },
|
|
416
290
|
]
|
|
417
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
291
|
+
sdist = { url = "https://files.pythonhosted.org/packages/41/86/a03390cb12cf64e2a8df07c267f3eb8d5035e0f9a04bb20fb79403d2a00e/pydantic-2.10.2.tar.gz", hash = "sha256:2bc2d7f17232e0841cbba4641e65ba1eb6fafb3a08de3a091ff3ce14a197c4fa", size = 785401 }
|
|
418
292
|
wheels = [
|
|
419
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
293
|
+
{ url = "https://files.pythonhosted.org/packages/d5/74/da832196702d0c56eb86b75bfa346db9238617e29b0b7ee3b8b4eccfe654/pydantic-2.10.2-py3-none-any.whl", hash = "sha256:cfb96e45951117c3024e6b67b25cdc33a3cb7b2fa62e239f7af1378358a1d99e", size = 456364 },
|
|
420
294
|
]
|
|
421
295
|
|
|
422
296
|
[[package]]
|
|
423
297
|
name = "pydantic-core"
|
|
424
|
-
version = "2.27.
|
|
298
|
+
version = "2.27.1"
|
|
425
299
|
source = { registry = "https://pypi.org/simple" }
|
|
426
300
|
dependencies = [
|
|
427
301
|
{ name = "typing-extensions" },
|
|
428
302
|
]
|
|
429
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
430
|
-
wheels = [
|
|
431
|
-
{ url = "https://files.pythonhosted.org/packages/82/99/43149b127559f3152cd28cb7146592c6547cfe47d528761954e2e8fcabaf/pydantic_core-2.27.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:8117839a9bdbba86e7f9df57018fe3b96cec934c3940b591b0fd3fbfb485864a", size = 1887064 },
|
|
432
|
-
{ url = "https://files.pythonhosted.org/packages/7e/dd/989570c76334aa55ccb4ee8b5e0e6881a513620c6172d93b2f3b77e10f81/pydantic_core-2.27.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a291d0b4243a259c8ea7e2b84eb9ccb76370e569298875a7c5e3e71baf49057a", size = 1804405 },
|
|
433
|
-
{ url = "https://files.pythonhosted.org/packages/3e/b5/bce1d6d6fb71d916c74bf988b7d0cd7fc0c23da5e08bc0d6d6e08c12bf36/pydantic_core-2.27.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:84e35afd9e10b2698e6f2f32256678cb23ca6c1568d02628033a837638b3ed12", size = 1822595 },
|
|
434
|
-
{ url = "https://files.pythonhosted.org/packages/35/93/a6e5e04625ac8fcbed523d7b741e91cc3a37ed1e04e16f8f2f34269bbe53/pydantic_core-2.27.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:58ab0d979c969983cdb97374698d847a4acffb217d543e172838864636ef10d9", size = 1848701 },
|
|
435
|
-
{ url = "https://files.pythonhosted.org/packages/3a/74/56ead1436e3f6513b59b3a442272578a6ec09a39ab95abd5ee321bcc8c95/pydantic_core-2.27.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0d06b667e53320332be2bf6f9461f4a9b78092a079b8ce8634c9afaa7e10cd9f", size = 2031878 },
|
|
436
|
-
{ url = "https://files.pythonhosted.org/packages/e1/4d/8905b2710ef653c0da27224bfb6a084b5873ad6fdb975dda837943e5639d/pydantic_core-2.27.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:78f841523729e43e3928a364ec46e2e3f80e6625a4f62aca5c345f3f626c6e8a", size = 2673386 },
|
|
437
|
-
{ url = "https://files.pythonhosted.org/packages/1d/f0/abe1511f11756d12ce18d016f3555cb47211590e4849ee02e7adfdd1684e/pydantic_core-2.27.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:400bf470e4327e920883b51e255617dfe4496d4e80c3fea0b5a5d0bf2c404dd4", size = 2152867 },
|
|
438
|
-
{ url = "https://files.pythonhosted.org/packages/c7/90/1c588d4d93ce53e1f5ab0cea2d76151fcd36613446bf99b670d7da9ddf89/pydantic_core-2.27.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:951e71da6c89d354572098bada5ba5b5dc3a9390c933af8a614e37755d3d1840", size = 1986595 },
|
|
439
|
-
{ url = "https://files.pythonhosted.org/packages/a3/9c/27d06369f39375966836cde5c8aec0a66dc2f532c13d9aa1a6c370131fbd/pydantic_core-2.27.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:2a51ce96224eadd1845150b204389623c8e129fde5a67a84b972bd83a85c6c40", size = 1995731 },
|
|
440
|
-
{ url = "https://files.pythonhosted.org/packages/26/4e/b039e52b7f4c51d9fae6715d5d2e47a57c369b8e0cb75838974a193aae40/pydantic_core-2.27.0-cp312-cp312-musllinux_1_1_armv7l.whl", hash = "sha256:483c2213a609e7db2c592bbc015da58b6c75af7360ca3c981f178110d9787bcf", size = 2085771 },
|
|
441
|
-
{ url = "https://files.pythonhosted.org/packages/01/93/2796bd116a93e7e4e10baca4c55266c4d214b3b4e5ee7f0e9add69c184af/pydantic_core-2.27.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:359e7951f04ad35111b5ddce184db3391442345d0ab073aa63a95eb8af25a5ef", size = 2150452 },
|
|
442
|
-
{ url = "https://files.pythonhosted.org/packages/0f/93/e57562d6ea961557174c3afa481a73ce0e2d8b823e0eb2b320bfb00debbe/pydantic_core-2.27.0-cp312-none-win32.whl", hash = "sha256:ee7d9d5537daf6d5c74a83b38a638cc001b648096c1cae8ef695b0c919d9d379", size = 1830767 },
|
|
443
|
-
{ url = "https://files.pythonhosted.org/packages/44/00/4f121ca5dd06420813e7858395b5832603ed0074a5b74ef3104c8dbc2fd5/pydantic_core-2.27.0-cp312-none-win_amd64.whl", hash = "sha256:2be0ad541bb9f059954ccf8877a49ed73877f862529575ff3d54bf4223e4dd61", size = 1973909 },
|
|
444
|
-
{ url = "https://files.pythonhosted.org/packages/c3/c7/36f87c0dabbde9c0dd59b9024e4bf117a5122515c864ddbe685ed8301670/pydantic_core-2.27.0-cp312-none-win_arm64.whl", hash = "sha256:6e19401742ed7b69e51d8e4df3c03ad5ec65a83b36244479fd70edde2828a5d9", size = 1877037 },
|
|
445
|
-
{ url = "https://files.pythonhosted.org/packages/9d/b2/740159bdfe532d856e340510246aa1fd723b97cadf1a38153bdfb52efa28/pydantic_core-2.27.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:5f2b19b8d6fca432cb3acf48cf5243a7bf512988029b6e6fd27e9e8c0a204d85", size = 1886935 },
|
|
446
|
-
{ url = "https://files.pythonhosted.org/packages/ca/2a/2f435d9fd591c912ca227f29c652a93775d35d54677b57c3157bbad823b5/pydantic_core-2.27.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:c86679f443e7085ea55a7376462553996c688395d18ef3f0d3dbad7838f857a2", size = 1805318 },
|
|
447
|
-
{ url = "https://files.pythonhosted.org/packages/ba/f2/755b628009530b19464bb95c60f829b47a6ef7930f8ca1d87dac90fd2848/pydantic_core-2.27.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:510b11e9c3b1a852876d1ccd8d5903684336d635214148637ceb27366c75a467", size = 1822284 },
|
|
448
|
-
{ url = "https://files.pythonhosted.org/packages/3d/c2/a12744628b1b55c5384bd77657afa0780868484a92c37a189fb460d1cfe7/pydantic_core-2.27.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eb704155e73b833801c247f39d562229c0303f54770ca14fb1c053acb376cf10", size = 1848522 },
|
|
449
|
-
{ url = "https://files.pythonhosted.org/packages/60/1d/dfcb8ab94a4637d4cf682550a2bf94695863988e7bcbd6f4d83c04178e17/pydantic_core-2.27.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9ce048deb1e033e7a865ca384770bccc11d44179cf09e5193a535c4c2f497bdc", size = 2031678 },
|
|
450
|
-
{ url = "https://files.pythonhosted.org/packages/ee/c8/f9cbcab0275e031c4312223c75d999b61fba60995003cd89dc4866300059/pydantic_core-2.27.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:58560828ee0951bb125c6f2862fbc37f039996d19ceb6d8ff1905abf7da0bf3d", size = 2672948 },
|
|
451
|
-
{ url = "https://files.pythonhosted.org/packages/41/f9/c613546237cf58ed7a7fa9158410c14d0e7e0cbbf95f83a905c9424bb074/pydantic_core-2.27.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:abb4785894936d7682635726613c44578c420a096729f1978cd061a7e72d5275", size = 2152419 },
|
|
452
|
-
{ url = "https://files.pythonhosted.org/packages/49/71/b951b03a271678b1d1b79481dac38cf8bce8a4e178f36ada0e9aff65a679/pydantic_core-2.27.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2883b260f7a93235488699d39cbbd94fa7b175d3a8063fbfddd3e81ad9988cb2", size = 1986408 },
|
|
453
|
-
{ url = "https://files.pythonhosted.org/packages/9a/2c/07b0d5b5e1cdaa07b7c23e758354377d294ff0395116d39c9fa734e5d89e/pydantic_core-2.27.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:c6fcb3fa3855d583aa57b94cf146f7781d5d5bc06cb95cb3afece33d31aac39b", size = 1995895 },
|
|
454
|
-
{ url = "https://files.pythonhosted.org/packages/63/09/c21e0d7438c7e742209cc8603607c8d389df96018396c8a2577f6e24c5c5/pydantic_core-2.27.0-cp313-cp313-musllinux_1_1_armv7l.whl", hash = "sha256:e851a051f7260e6d688267eb039c81f05f23a19431bd7dfa4bf5e3cb34c108cd", size = 2085914 },
|
|
455
|
-
{ url = "https://files.pythonhosted.org/packages/68/e4/5ed8f09d92655dcd0a86ee547e509adb3e396cef0a48f5c31e3b060bb9d0/pydantic_core-2.27.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:edb1bfd45227dec8d50bc7c7d86463cd8728bcc574f9b07de7369880de4626a3", size = 2150217 },
|
|
456
|
-
{ url = "https://files.pythonhosted.org/packages/cd/e6/a202f0e1b81c729130404e82d9de90dc4418ec01df35000d48d027c38501/pydantic_core-2.27.0-cp313-none-win32.whl", hash = "sha256:678f66462058dd978702db17eb6a3633d634f7aa0deaea61e0a674152766d3fc", size = 1830973 },
|
|
457
|
-
{ url = "https://files.pythonhosted.org/packages/06/3d/21ed0f308e6618ce6c5c6bfb9e71734a9a3256d5474a53c8e5aaaba498ca/pydantic_core-2.27.0-cp313-none-win_amd64.whl", hash = "sha256:d28ca7066d6cdd347a50d8b725dc10d9a1d6a1cce09836cf071ea6a2d4908be0", size = 1974853 },
|
|
458
|
-
{ url = "https://files.pythonhosted.org/packages/d7/18/e5744a132b81f98b9f92e15f33f03229a1d254ce7af942b1422ec2ac656f/pydantic_core-2.27.0-cp313-none-win_arm64.whl", hash = "sha256:6f4a53af9e81d757756508b57cae1cf28293f0f31b9fa2bfcb416cc7fb230f9d", size = 1877469 },
|
|
459
|
-
]
|
|
460
|
-
|
|
461
|
-
[[package]]
|
|
462
|
-
name = "pymavlink"
|
|
463
|
-
version = "2.4.42"
|
|
464
|
-
source = { registry = "https://pypi.org/simple" }
|
|
465
|
-
dependencies = [
|
|
466
|
-
{ name = "future" },
|
|
467
|
-
{ name = "lxml" },
|
|
468
|
-
]
|
|
469
|
-
sdist = { url = "https://files.pythonhosted.org/packages/6e/c8/19591ad720be80db73d117bdfe682b701231c2f7a4eae69af5a567ed25c2/pymavlink-2.4.42.tar.gz", hash = "sha256:dfe04408b57425e26538a6b4bd977f77239bc8ce61886174567b1a243f7c3d76", size = 11629743 }
|
|
303
|
+
sdist = { url = "https://files.pythonhosted.org/packages/a6/9f/7de1f19b6aea45aeb441838782d68352e71bfa98ee6fa048d5041991b33e/pydantic_core-2.27.1.tar.gz", hash = "sha256:62a763352879b84aa31058fc931884055fd75089cccbd9d58bb6afd01141b235", size = 412785 }
|
|
470
304
|
wheels = [
|
|
471
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
305
|
+
{ url = "https://files.pythonhosted.org/packages/be/51/2e9b3788feb2aebff2aa9dfbf060ec739b38c05c46847601134cc1fed2ea/pydantic_core-2.27.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:9cbd94fc661d2bab2bc702cddd2d3370bbdcc4cd0f8f57488a81bcce90c7a54f", size = 1895239 },
|
|
306
|
+
{ url = "https://files.pythonhosted.org/packages/7b/9e/f8063952e4a7d0127f5d1181addef9377505dcce3be224263b25c4f0bfd9/pydantic_core-2.27.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5f8c4718cd44ec1580e180cb739713ecda2bdee1341084c1467802a417fe0f02", size = 1805070 },
|
|
307
|
+
{ url = "https://files.pythonhosted.org/packages/2c/9d/e1d6c4561d262b52e41b17a7ef8301e2ba80b61e32e94520271029feb5d8/pydantic_core-2.27.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:15aae984e46de8d376df515f00450d1522077254ef6b7ce189b38ecee7c9677c", size = 1828096 },
|
|
308
|
+
{ url = "https://files.pythonhosted.org/packages/be/65/80ff46de4266560baa4332ae3181fffc4488ea7d37282da1a62d10ab89a4/pydantic_core-2.27.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1ba5e3963344ff25fc8c40da90f44b0afca8cfd89d12964feb79ac1411a260ac", size = 1857708 },
|
|
309
|
+
{ url = "https://files.pythonhosted.org/packages/d5/ca/3370074ad758b04d9562b12ecdb088597f4d9d13893a48a583fb47682cdf/pydantic_core-2.27.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:992cea5f4f3b29d6b4f7f1726ed8ee46c8331c6b4eed6db5b40134c6fe1768bb", size = 2037751 },
|
|
310
|
+
{ url = "https://files.pythonhosted.org/packages/b1/e2/4ab72d93367194317b99d051947c071aef6e3eb95f7553eaa4208ecf9ba4/pydantic_core-2.27.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0325336f348dbee6550d129b1627cb8f5351a9dc91aad141ffb96d4937bd9529", size = 2733863 },
|
|
311
|
+
{ url = "https://files.pythonhosted.org/packages/8a/c6/8ae0831bf77f356bb73127ce5a95fe115b10f820ea480abbd72d3cc7ccf3/pydantic_core-2.27.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7597c07fbd11515f654d6ece3d0e4e5093edc30a436c63142d9a4b8e22f19c35", size = 2161161 },
|
|
312
|
+
{ url = "https://files.pythonhosted.org/packages/f1/f4/b2fe73241da2429400fc27ddeaa43e35562f96cf5b67499b2de52b528cad/pydantic_core-2.27.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:3bbd5d8cc692616d5ef6fbbbd50dbec142c7e6ad9beb66b78a96e9c16729b089", size = 1993294 },
|
|
313
|
+
{ url = "https://files.pythonhosted.org/packages/77/29/4bb008823a7f4cc05828198153f9753b3bd4c104d93b8e0b1bfe4e187540/pydantic_core-2.27.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:dc61505e73298a84a2f317255fcc72b710b72980f3a1f670447a21efc88f8381", size = 2001468 },
|
|
314
|
+
{ url = "https://files.pythonhosted.org/packages/f2/a9/0eaceeba41b9fad851a4107e0cf999a34ae8f0d0d1f829e2574f3d8897b0/pydantic_core-2.27.1-cp312-cp312-musllinux_1_1_armv7l.whl", hash = "sha256:e1f735dc43da318cad19b4173dd1ffce1d84aafd6c9b782b3abc04a0d5a6f5bb", size = 2091413 },
|
|
315
|
+
{ url = "https://files.pythonhosted.org/packages/d8/36/eb8697729725bc610fd73940f0d860d791dc2ad557faaefcbb3edbd2b349/pydantic_core-2.27.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:f4e5658dbffe8843a0f12366a4c2d1c316dbe09bb4dfbdc9d2d9cd6031de8aae", size = 2154735 },
|
|
316
|
+
{ url = "https://files.pythonhosted.org/packages/52/e5/4f0fbd5c5995cc70d3afed1b5c754055bb67908f55b5cb8000f7112749bf/pydantic_core-2.27.1-cp312-none-win32.whl", hash = "sha256:672ebbe820bb37988c4d136eca2652ee114992d5d41c7e4858cdd90ea94ffe5c", size = 1833633 },
|
|
317
|
+
{ url = "https://files.pythonhosted.org/packages/ee/f2/c61486eee27cae5ac781305658779b4a6b45f9cc9d02c90cb21b940e82cc/pydantic_core-2.27.1-cp312-none-win_amd64.whl", hash = "sha256:66ff044fd0bb1768688aecbe28b6190f6e799349221fb0de0e6f4048eca14c16", size = 1986973 },
|
|
318
|
+
{ url = "https://files.pythonhosted.org/packages/df/a6/e3f12ff25f250b02f7c51be89a294689d175ac76e1096c32bf278f29ca1e/pydantic_core-2.27.1-cp312-none-win_arm64.whl", hash = "sha256:9a3b0793b1bbfd4146304e23d90045f2a9b5fd5823aa682665fbdaf2a6c28f3e", size = 1883215 },
|
|
319
|
+
{ url = "https://files.pythonhosted.org/packages/0f/d6/91cb99a3c59d7b072bded9959fbeab0a9613d5a4935773c0801f1764c156/pydantic_core-2.27.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:f216dbce0e60e4d03e0c4353c7023b202d95cbaeff12e5fd2e82ea0a66905073", size = 1895033 },
|
|
320
|
+
{ url = "https://files.pythonhosted.org/packages/07/42/d35033f81a28b27dedcade9e967e8a40981a765795c9ebae2045bcef05d3/pydantic_core-2.27.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a2e02889071850bbfd36b56fd6bc98945e23670773bc7a76657e90e6b6603c08", size = 1807542 },
|
|
321
|
+
{ url = "https://files.pythonhosted.org/packages/41/c2/491b59e222ec7e72236e512108ecad532c7f4391a14e971c963f624f7569/pydantic_core-2.27.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42b0e23f119b2b456d07ca91b307ae167cc3f6c846a7b169fca5326e32fdc6cf", size = 1827854 },
|
|
322
|
+
{ url = "https://files.pythonhosted.org/packages/e3/f3/363652651779113189cefdbbb619b7b07b7a67ebb6840325117cc8cc3460/pydantic_core-2.27.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:764be71193f87d460a03f1f7385a82e226639732214b402f9aa61f0d025f0737", size = 1857389 },
|
|
323
|
+
{ url = "https://files.pythonhosted.org/packages/5f/97/be804aed6b479af5a945daec7538d8bf358d668bdadde4c7888a2506bdfb/pydantic_core-2.27.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1c00666a3bd2f84920a4e94434f5974d7bbc57e461318d6bb34ce9cdbbc1f6b2", size = 2037934 },
|
|
324
|
+
{ url = "https://files.pythonhosted.org/packages/42/01/295f0bd4abf58902917e342ddfe5f76cf66ffabfc57c2e23c7681a1a1197/pydantic_core-2.27.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3ccaa88b24eebc0f849ce0a4d09e8a408ec5a94afff395eb69baf868f5183107", size = 2735176 },
|
|
325
|
+
{ url = "https://files.pythonhosted.org/packages/9d/a0/cd8e9c940ead89cc37812a1a9f310fef59ba2f0b22b4e417d84ab09fa970/pydantic_core-2.27.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c65af9088ac534313e1963443d0ec360bb2b9cba6c2909478d22c2e363d98a51", size = 2160720 },
|
|
326
|
+
{ url = "https://files.pythonhosted.org/packages/73/ae/9d0980e286627e0aeca4c352a60bd760331622c12d576e5ea4441ac7e15e/pydantic_core-2.27.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:206b5cf6f0c513baffaeae7bd817717140770c74528f3e4c3e1cec7871ddd61a", size = 1992972 },
|
|
327
|
+
{ url = "https://files.pythonhosted.org/packages/bf/ba/ae4480bc0292d54b85cfb954e9d6bd226982949f8316338677d56541b85f/pydantic_core-2.27.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:062f60e512fc7fff8b8a9d680ff0ddaaef0193dba9fa83e679c0c5f5fbd018bc", size = 2001477 },
|
|
328
|
+
{ url = "https://files.pythonhosted.org/packages/55/b7/e26adf48c2f943092ce54ae14c3c08d0d221ad34ce80b18a50de8ed2cba8/pydantic_core-2.27.1-cp313-cp313-musllinux_1_1_armv7l.whl", hash = "sha256:a0697803ed7d4af5e4c1adf1670af078f8fcab7a86350e969f454daf598c4960", size = 2091186 },
|
|
329
|
+
{ url = "https://files.pythonhosted.org/packages/ba/cc/8491fff5b608b3862eb36e7d29d36a1af1c945463ca4c5040bf46cc73f40/pydantic_core-2.27.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:58ca98a950171f3151c603aeea9303ef6c235f692fe555e883591103da709b23", size = 2154429 },
|
|
330
|
+
{ url = "https://files.pythonhosted.org/packages/78/d8/c080592d80edd3441ab7f88f865f51dae94a157fc64283c680e9f32cf6da/pydantic_core-2.27.1-cp313-none-win32.whl", hash = "sha256:8065914ff79f7eab1599bd80406681f0ad08f8e47c880f17b416c9f8f7a26d05", size = 1833713 },
|
|
331
|
+
{ url = "https://files.pythonhosted.org/packages/83/84/5ab82a9ee2538ac95a66e51f6838d6aba6e0a03a42aa185ad2fe404a4e8f/pydantic_core-2.27.1-cp313-none-win_amd64.whl", hash = "sha256:ba630d5e3db74c79300d9a5bdaaf6200172b107f263c98a0539eeecb857b2337", size = 1987897 },
|
|
332
|
+
{ url = "https://files.pythonhosted.org/packages/df/c3/b15fb833926d91d982fde29c0624c9f225da743c7af801dace0d4e187e71/pydantic_core-2.27.1-cp313-none-win_arm64.whl", hash = "sha256:45cf8588c066860b623cd11c4ba687f8d7175d5f7ef65f7129df8a394c502de5", size = 1882983 },
|
|
472
333
|
]
|
|
473
334
|
|
|
474
335
|
[[package]]
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
[project]
|
|
2
|
-
name = "flightplotting"
|
|
3
|
-
version="v0.2.11"
|
|
4
|
-
description = "Add your description here"
|
|
5
|
-
readme = "README.md"
|
|
6
|
-
authors = [{ name = "Thomas David", email = "thomasdavid0@gmail.com" }]
|
|
7
|
-
requires-python = ">=3.12"
|
|
8
|
-
dependencies = [
|
|
9
|
-
"flightanalysis>=0.3.13",
|
|
10
|
-
"flightdata>=0.2.24",
|
|
11
|
-
"numpy>=2.1.3",
|
|
12
|
-
"pandas>=2.2.3",
|
|
13
|
-
"pfc-geometry",
|
|
14
|
-
"plotly>=5.24.1",
|
|
15
|
-
]
|
|
16
|
-
|
|
17
|
-
[build-system]
|
|
18
|
-
requires = ["hatchling"]
|
|
19
|
-
build-backend = "hatchling.build"
|
|
20
|
-
|
|
21
|
-
[tool.hatch.build.targets.wheel]
|
|
22
|
-
packages = ["src/plotting"]
|
|
23
|
-
|
|
24
|
-
[tool.uv.sources]
|
|
25
|
-
pfc-geometry = { path = "../geometry" , editable = true}
|
|
26
|
-
flightdata = { path = "../FlightData" , editable = true}
|
|
27
|
-
flightanalysis = { path = "../FlightAnalysis" , editable = true}
|
|
28
|
-
ardupilot_log_reader = { path = "../ArdupilotLogReader" , editable = true}
|
|
29
|
-
|
|
30
|
-
[dependency-groups]
|
|
31
|
-
dev = ["ardupilot_log_reader>=0.3.5", "pymavlink>=2.4.42", "pytest>=8.3.3"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|