libxrk 0.5.0__tar.gz → 0.6.0__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.
- {libxrk-0.5.0 → libxrk-0.6.0}/PKG-INFO +10 -3
- libxrk-0.5.0/build.py → libxrk-0.6.0/cython_build.py +1 -1
- {libxrk-0.5.0 → libxrk-0.6.0}/pyproject.toml +40 -9
- {libxrk-0.5.0 → libxrk-0.6.0}/LICENSE +0 -0
- {libxrk-0.5.0 → libxrk-0.6.0}/README.md +0 -0
- {libxrk-0.5.0 → libxrk-0.6.0}/src/libxrk/CLAUDE.md +0 -0
- {libxrk-0.5.0 → libxrk-0.6.0}/src/libxrk/__init__.py +0 -0
- {libxrk-0.5.0 → libxrk-0.6.0}/src/libxrk/aim_xrk.pyi +0 -0
- {libxrk-0.5.0 → libxrk-0.6.0}/src/libxrk/aim_xrk.pyx +0 -0
- {libxrk-0.5.0 → libxrk-0.6.0}/src/libxrk/base.py +0 -0
- {libxrk-0.5.0 → libxrk-0.6.0}/src/libxrk/gps.py +0 -0
- {libxrk-0.5.0 → libxrk-0.6.0}/src/libxrk/py.typed +0 -0
|
@@ -1,24 +1,31 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: libxrk
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.6.0
|
|
4
4
|
Summary: Library for reading AIM XRK files from AIM automotive data loggers
|
|
5
5
|
License-File: LICENSE
|
|
6
6
|
Author: Christopher Dewan
|
|
7
7
|
Author-email: chris.dewan@m3rlin.net
|
|
8
8
|
Requires-Python: >=3.10
|
|
9
|
+
Classifier: Development Status :: 4 - Beta
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
12
|
Classifier: Programming Language :: Python :: 3
|
|
10
13
|
Classifier: Programming Language :: Python :: 3.10
|
|
11
14
|
Classifier: Programming Language :: Python :: 3.11
|
|
12
15
|
Classifier: Programming Language :: Python :: 3.12
|
|
13
16
|
Classifier: Programming Language :: Python :: 3.13
|
|
14
17
|
Classifier: Programming Language :: Python :: 3.14
|
|
18
|
+
Classifier: Programming Language :: Cython
|
|
19
|
+
Classifier: Topic :: Scientific/Engineering
|
|
15
20
|
Provides-Extra: dev
|
|
16
21
|
Provides-Extra: test
|
|
17
22
|
Requires-Dist: cython (>=3.0.0)
|
|
18
|
-
Requires-Dist: numpy (>=1.26.0)
|
|
23
|
+
Requires-Dist: numpy (>=1.26.0) ; python_version < "3.14"
|
|
24
|
+
Requires-Dist: numpy (>=2.4.0) ; python_version >= "3.14"
|
|
19
25
|
Requires-Dist: parameterized (>=0.9.0) ; extra == "dev"
|
|
20
26
|
Requires-Dist: parameterized (>=0.9.0) ; extra == "test"
|
|
21
|
-
Requires-Dist: pyarrow (>=
|
|
27
|
+
Requires-Dist: pyarrow (>=18.1.0) ; python_version < "3.14"
|
|
28
|
+
Requires-Dist: pyarrow (>=22.0.0) ; python_version >= "3.14"
|
|
22
29
|
Requires-Dist: pytest (>=7.0.0) ; extra == "dev"
|
|
23
30
|
Requires-Dist: pytest (>=7.0.0) ; extra == "test"
|
|
24
31
|
Requires-Dist: setuptools (>=68.0.0) ; extra == "dev"
|
|
@@ -1,16 +1,31 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "libxrk"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.6.0"
|
|
4
4
|
description = "Library for reading AIM XRK files from AIM automotive data loggers"
|
|
5
5
|
authors = [
|
|
6
6
|
{name = "Christopher Dewan",email = "chris.dewan@m3rlin.net"}
|
|
7
7
|
]
|
|
8
8
|
readme = "README.md"
|
|
9
9
|
requires-python = ">=3.10"
|
|
10
|
+
classifiers = [
|
|
11
|
+
"Development Status :: 4 - Beta",
|
|
12
|
+
"Intended Audience :: Developers",
|
|
13
|
+
"License :: OSI Approved :: MIT License",
|
|
14
|
+
"Programming Language :: Python :: 3",
|
|
15
|
+
"Programming Language :: Python :: 3.10",
|
|
16
|
+
"Programming Language :: Python :: 3.11",
|
|
17
|
+
"Programming Language :: Python :: 3.12",
|
|
18
|
+
"Programming Language :: Python :: 3.13",
|
|
19
|
+
"Programming Language :: Python :: 3.14",
|
|
20
|
+
"Programming Language :: Cython",
|
|
21
|
+
"Topic :: Scientific/Engineering",
|
|
22
|
+
]
|
|
10
23
|
dependencies = [
|
|
11
|
-
"numpy>=1.26.0",
|
|
24
|
+
"numpy>=1.26.0; python_version < '3.14'",
|
|
25
|
+
"numpy>=2.4.0; python_version >= '3.14'",
|
|
12
26
|
"cython>=3.0.0",
|
|
13
|
-
"pyarrow>=
|
|
27
|
+
"pyarrow>=18.1.0; python_version < '3.14'",
|
|
28
|
+
"pyarrow>=22.0.0; python_version >= '3.14'",
|
|
14
29
|
]
|
|
15
30
|
|
|
16
31
|
[project.urls]
|
|
@@ -45,9 +60,15 @@ exclude = [
|
|
|
45
60
|
|
|
46
61
|
[tool.poetry.dependencies]
|
|
47
62
|
python = "^3.10"
|
|
48
|
-
numpy =
|
|
63
|
+
numpy = [
|
|
64
|
+
{version = ">=1.26.0", python = "<3.14"},
|
|
65
|
+
{version = ">=2.4.0", python = ">=3.14"},
|
|
66
|
+
]
|
|
49
67
|
cython = "^3.0.0"
|
|
50
|
-
pyarrow =
|
|
68
|
+
pyarrow = [
|
|
69
|
+
{version = ">=18.1.0", python = "<3.14"},
|
|
70
|
+
{version = ">=22.0.0", python = ">=3.14"},
|
|
71
|
+
]
|
|
51
72
|
|
|
52
73
|
[tool.poetry.group.dev.dependencies]
|
|
53
74
|
pytest = "^7.0.0"
|
|
@@ -60,7 +81,7 @@ parameterized = "^0.9.0"
|
|
|
60
81
|
|
|
61
82
|
[tool.black]
|
|
62
83
|
line-length = 100
|
|
63
|
-
target-version = ['py312']
|
|
84
|
+
target-version = ['py310', 'py311', 'py312', 'py313', 'py314']
|
|
64
85
|
include = '\.pyi?$'
|
|
65
86
|
extend-exclude = '''
|
|
66
87
|
/(
|
|
@@ -153,17 +174,27 @@ deps = ["emsdk-setup"]
|
|
|
153
174
|
|
|
154
175
|
[tool.cibuildwheel]
|
|
155
176
|
build = "cp310-* cp311-* cp312-* cp313-* cp314-*"
|
|
156
|
-
skip = "*-musllinux_* *-win*
|
|
177
|
+
skip = "*-musllinux_* *-win*"
|
|
157
178
|
build-verbosity = 1
|
|
158
179
|
|
|
159
180
|
[tool.cibuildwheel.linux]
|
|
160
181
|
archs = ["x86_64", "aarch64"]
|
|
161
182
|
before-build = "pip install numpy cython"
|
|
162
183
|
|
|
184
|
+
[tool.cibuildwheel.macos]
|
|
185
|
+
archs = ["x86_64", "arm64"]
|
|
186
|
+
before-build = "pip install numpy cython"
|
|
187
|
+
|
|
163
188
|
[tool.poetry.build]
|
|
164
|
-
script = "
|
|
189
|
+
script = "cython_build.py"
|
|
165
190
|
generate-setup-file = false
|
|
166
191
|
|
|
167
192
|
[build-system]
|
|
168
|
-
requires = [
|
|
193
|
+
requires = [
|
|
194
|
+
"poetry-core>=2.0.0,<3.0.0",
|
|
195
|
+
"setuptools>=68.0.0",
|
|
196
|
+
"cython>=3.0.0",
|
|
197
|
+
"numpy>=1.26.0; python_version < '3.14'",
|
|
198
|
+
"numpy>=2.4.0; python_version >= '3.14'",
|
|
199
|
+
]
|
|
169
200
|
build-backend = "poetry.core.masonry.api"
|
|
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
|