spac-kit 0.2.0.dev0__tar.gz → 0.2.2__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.
- {spac_kit-0.2.0.dev0 → spac_kit-0.2.2}/PKG-INFO +3 -3
- {spac_kit-0.2.0.dev0 → spac_kit-0.2.2}/pyproject.toml +3 -3
- {spac_kit-0.2.0.dev0 → spac_kit-0.2.2}/src/spac_kit.egg-info/PKG-INFO +3 -3
- {spac_kit-0.2.0.dev0 → spac_kit-0.2.2}/src/spac_kit.egg-info/requires.txt +1 -1
- {spac_kit-0.2.0.dev0 → spac_kit-0.2.2}/LICENSE.md +0 -0
- {spac_kit-0.2.0.dev0 → spac_kit-0.2.2}/README.md +0 -0
- {spac_kit-0.2.0.dev0 → spac_kit-0.2.2}/setup.cfg +0 -0
- {spac_kit-0.2.0.dev0 → spac_kit-0.2.2}/setup.py +0 -0
- {spac_kit-0.2.0.dev0 → spac_kit-0.2.2}/src/spac_kit/__init__.py +0 -0
- {spac_kit-0.2.0.dev0 → spac_kit-0.2.2}/src/spac_kit/parser/Packets.py +0 -0
- {spac_kit-0.2.0.dev0 → spac_kit-0.2.2}/src/spac_kit/parser/__init__.py +0 -0
- {spac_kit-0.2.0.dev0 → spac_kit-0.2.2}/src/spac_kit/parser/downlink_to_excel.py +0 -0
- {spac_kit-0.2.0.dev0 → spac_kit-0.2.2}/src/spac_kit/parser/logger.conf +0 -0
- {spac_kit-0.2.0.dev0 → spac_kit-0.2.2}/src/spac_kit/parser/parse_ccsds_downlink.py +0 -0
- {spac_kit-0.2.0.dev0 → spac_kit-0.2.2}/src/spac_kit/parser/remove_non_ccsds_headers.py +0 -0
- {spac_kit-0.2.0.dev0 → spac_kit-0.2.2}/src/spac_kit/parser/test/__init__.py +0 -0
- {spac_kit-0.2.0.dev0 → spac_kit-0.2.2}/src/spac_kit/parser/test/test_true.py +0 -0
- {spac_kit-0.2.0.dev0 → spac_kit-0.2.2}/src/spac_kit/parser/test_utils.py +0 -0
- {spac_kit-0.2.0.dev0 → spac_kit-0.2.2}/src/spac_kit/parser/util.py +0 -0
- {spac_kit-0.2.0.dev0 → spac_kit-0.2.2}/src/spac_kit.egg-info/SOURCES.txt +0 -0
- {spac_kit-0.2.0.dev0 → spac_kit-0.2.2}/src/spac_kit.egg-info/dependency_links.txt +0 -0
- {spac_kit-0.2.0.dev0 → spac_kit-0.2.2}/src/spac_kit.egg-info/entry_points.txt +0 -0
- {spac_kit-0.2.0.dev0 → spac_kit-0.2.2}/src/spac_kit.egg-info/namespace_packages.txt +0 -0
- {spac_kit-0.2.0.dev0 → spac_kit-0.2.2}/src/spac_kit.egg-info/top_level.txt +0 -0
- {spac_kit-0.2.0.dev0 → spac_kit-0.2.2}/src/spac_kit.egg-info/zip-safe +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: spac_kit
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: Collection of Python tools for working with CCSDS Space Packets
|
|
5
5
|
Home-page: https://github.com/CCSDSPy/SPaC-Kit
|
|
6
6
|
Author: NASA/Caltech/JPL
|
|
@@ -209,10 +209,10 @@ Classifier: Natural Language :: English
|
|
|
209
209
|
Classifier: Operating System :: OS Independent
|
|
210
210
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
211
211
|
Classifier: Topic :: Scientific/Engineering
|
|
212
|
-
Requires-Python: >=3.
|
|
212
|
+
Requires-Python: >=3.12
|
|
213
213
|
Description-Content-Type: text/markdown
|
|
214
214
|
License-File: LICENSE.md
|
|
215
|
-
Requires-Dist: ccsdspy~=1.3
|
|
215
|
+
Requires-Dist: ccsdspy~=1.4.3
|
|
216
216
|
Requires-Dist: crccheck~=1.3.0
|
|
217
217
|
Requires-Dist: pandas~=2.3.3
|
|
218
218
|
Requires-Dist: bitstring~=4.3.1
|
|
@@ -7,14 +7,14 @@ build-backend = "setuptools.build_meta"
|
|
|
7
7
|
|
|
8
8
|
[project]
|
|
9
9
|
name = "spac_kit"
|
|
10
|
-
version = "0.2.
|
|
10
|
+
version = "0.2.2"
|
|
11
11
|
description = "Collection of Python tools for working with CCSDS Space Packets"
|
|
12
12
|
authors = [
|
|
13
13
|
{ name = "NASA/Caltech/JPL" }
|
|
14
14
|
]
|
|
15
15
|
license = { file = "LICENSE.md" }
|
|
16
16
|
readme = "README.md"
|
|
17
|
-
requires-python = ">=3.
|
|
17
|
+
requires-python = ">=3.12"
|
|
18
18
|
keywords = ["CCSDS", "Space Packets", "Downlink", "Parser", "Documentation"]
|
|
19
19
|
classifiers = [
|
|
20
20
|
"Development Status :: 4 - Beta",
|
|
@@ -27,7 +27,7 @@ classifiers = [
|
|
|
27
27
|
"Topic :: Scientific/Engineering"
|
|
28
28
|
]
|
|
29
29
|
dependencies = [
|
|
30
|
-
"ccsdspy~=1.3
|
|
30
|
+
"ccsdspy~=1.4.3",
|
|
31
31
|
"crccheck~=1.3.0",
|
|
32
32
|
"pandas~=2.3.3",
|
|
33
33
|
"bitstring~=4.3.1",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: spac_kit
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: Collection of Python tools for working with CCSDS Space Packets
|
|
5
5
|
Home-page: https://github.com/CCSDSPy/SPaC-Kit
|
|
6
6
|
Author: NASA/Caltech/JPL
|
|
@@ -209,10 +209,10 @@ Classifier: Natural Language :: English
|
|
|
209
209
|
Classifier: Operating System :: OS Independent
|
|
210
210
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
211
211
|
Classifier: Topic :: Scientific/Engineering
|
|
212
|
-
Requires-Python: >=3.
|
|
212
|
+
Requires-Python: >=3.12
|
|
213
213
|
Description-Content-Type: text/markdown
|
|
214
214
|
License-File: LICENSE.md
|
|
215
|
-
Requires-Dist: ccsdspy~=1.3
|
|
215
|
+
Requires-Dist: ccsdspy~=1.4.3
|
|
216
216
|
Requires-Dist: crccheck~=1.3.0
|
|
217
217
|
Requires-Dist: pandas~=2.3.3
|
|
218
218
|
Requires-Dist: bitstring~=4.3.1
|
|
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
|
|
File without changes
|
|
File without changes
|