py_canoe 3.0.3__tar.gz → 3.0.4__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.
- {py_canoe-3.0.3 → py_canoe-3.0.4}/PKG-INFO +4 -10
- {py_canoe-3.0.3 → py_canoe-3.0.4}/py_canoe/py_canoe.py +2 -2
- {py_canoe-3.0.3 → py_canoe-3.0.4}/pyproject.toml +18 -13
- {py_canoe-3.0.3 → py_canoe-3.0.4}/LICENSE +0 -0
- {py_canoe-3.0.3 → py_canoe-3.0.4}/README.md +0 -0
- {py_canoe-3.0.3 → py_canoe-3.0.4}/py_canoe/__init__.py +0 -0
- {py_canoe-3.0.3/py_canoe → py_canoe-3.0.4/py_canoe/py_canoe_utils}/logging_collection.py +0 -0
- {py_canoe-3.0.3/py_canoe → py_canoe-3.0.4/py_canoe/py_canoe_utils}/py_canoe_logger.py +0 -0
|
@@ -1,23 +1,17 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: py_canoe
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.4
|
|
4
4
|
Summary: Python CANoe Package
|
|
5
5
|
License: LICENSE
|
|
6
6
|
Keywords: Vector,CANoe,py_canoe
|
|
7
7
|
Author: chaitu-ycr
|
|
8
8
|
Author-email: chaitu.ycr@gmail.com
|
|
9
|
-
Requires-Python: >=3.9
|
|
9
|
+
Requires-Python: >=3.9
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
11
|
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
-
Classifier: License :: Other/Proprietary License
|
|
12
12
|
Classifier: Operating System :: Microsoft :: Windows
|
|
13
|
-
Classifier: Programming Language :: Python :: 3
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
15
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.13
|
|
19
13
|
Classifier: Topic :: Software Development :: Embedded Systems
|
|
20
|
-
Requires-Dist: pywin32
|
|
14
|
+
Requires-Dist: pywin32
|
|
21
15
|
Project-URL: Documentation, https://chaitu-ycr.github.io/py_canoe/
|
|
22
16
|
Project-URL: Homepage, https://github.com/chaitu-ycr/py_canoe
|
|
23
17
|
Project-URL: Repository, https://github.com/chaitu-ycr/py_canoe
|
|
@@ -9,8 +9,8 @@ from typing import Union, Iterable
|
|
|
9
9
|
from datetime import datetime
|
|
10
10
|
|
|
11
11
|
# import internal modules here
|
|
12
|
-
from .logging_collection import LoggingCollection, Logging, ExporterSymbol, Message
|
|
13
|
-
from .py_canoe_logger import PyCanoeLogger
|
|
12
|
+
from .py_canoe_utils.logging_collection import LoggingCollection, Logging, ExporterSymbol, Message
|
|
13
|
+
from .py_canoe_utils.py_canoe_logger import PyCanoeLogger
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
class PyCanoeException(Exception):
|
|
@@ -1,13 +1,11 @@
|
|
|
1
|
-
[
|
|
1
|
+
[project]
|
|
2
2
|
name = "py_canoe"
|
|
3
|
-
version = "3.0.
|
|
3
|
+
version = "3.0.4"
|
|
4
4
|
description = "Python CANoe Package"
|
|
5
|
-
|
|
6
|
-
license = "LICENSE"
|
|
5
|
+
license = { text = "LICENSE" }
|
|
7
6
|
readme = "README.md"
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
documentation = "https://chaitu-ycr.github.io/py_canoe/"
|
|
7
|
+
requires-python = ">=3.9"
|
|
8
|
+
authors = [{ name = "chaitu-ycr", email = "chaitu.ycr@gmail.com" }]
|
|
11
9
|
keywords = ["Vector", "CANoe", "py_canoe"]
|
|
12
10
|
classifiers = [
|
|
13
11
|
"Programming Language :: Python :: 3",
|
|
@@ -15,16 +13,23 @@ classifiers = [
|
|
|
15
13
|
"Operating System :: Microsoft :: Windows",
|
|
16
14
|
"Topic :: Software Development :: Embedded Systems"
|
|
17
15
|
]
|
|
16
|
+
dynamic = [ "dependencies" ]
|
|
17
|
+
|
|
18
|
+
[project.urls]
|
|
19
|
+
homepage = "https://github.com/chaitu-ycr/py_canoe"
|
|
20
|
+
repository = "https://github.com/chaitu-ycr/py_canoe"
|
|
21
|
+
documentation = "https://chaitu-ycr.github.io/py_canoe/"
|
|
18
22
|
|
|
19
23
|
[tool.poetry.dependencies]
|
|
20
|
-
python = "
|
|
21
|
-
pywin32 = "
|
|
24
|
+
python = ">=3.9"
|
|
25
|
+
pywin32 = "*"
|
|
22
26
|
|
|
23
27
|
[tool.poetry.group.dev.dependencies]
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
pytest
|
|
28
|
+
mkdocs-material = "*"
|
|
29
|
+
mkdocstrings-python = "*"
|
|
30
|
+
mkdocs-include-markdown-plugin = "*"
|
|
31
|
+
pytest = "*"
|
|
32
|
+
pytest-html = "*"
|
|
28
33
|
|
|
29
34
|
[build-system]
|
|
30
35
|
requires = ["poetry-core"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|