cwrap 1.6.9__tar.gz → 1.6.10__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.
- {cwrap-1.6.9 → cwrap-1.6.10}/.github/workflows/build.yml +1 -1
- {cwrap-1.6.9/src/cwrap.egg-info → cwrap-1.6.10}/PKG-INFO +3 -2
- cwrap-1.6.10/src/cwrap/version.py +34 -0
- {cwrap-1.6.9 → cwrap-1.6.10/src/cwrap.egg-info}/PKG-INFO +3 -2
- cwrap-1.6.9/src/cwrap/version.py +0 -16
- {cwrap-1.6.9 → cwrap-1.6.10}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/.gitignore +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/CODE_OF_CONDUCT.md +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/CONTRIBUTING.md +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/GPL +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/LICENSE +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/README.md +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/SECURITY.md +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/debian/README.Debian +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/debian/changelog +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/debian/compat +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/debian/control +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/debian/copyright +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/debian/docs +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/debian/rules +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/debian/source/format +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/examples/map/ex_map.c +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/examples/map/ex_map.py +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/examples/vecstr/ex_vecstr.c +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/examples/vecstr/ex_vecstr.py +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/pyproject.toml +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/redhat/cwrap.spec +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/requirements.txt +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/setup.cfg +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/src/cwrap/__init__.py +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/src/cwrap/basecclass.py +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/src/cwrap/basecenum.py +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/src/cwrap/basecvalue.py +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/src/cwrap/cfile.py +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/src/cwrap/clib.py +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/src/cwrap/metacwrap.py +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/src/cwrap/prototype.py +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/src/cwrap.egg-info/SOURCES.txt +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/src/cwrap.egg-info/dependency_links.txt +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/src/cwrap.egg-info/top_level.txt +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/tests/__init__.py +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/tests/test_basecclass.py +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/tests/test_basecenum.py +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/tests/test_basecvalue.py +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/tests/test_cfile.py +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/tests/test_libc.py +0 -0
- {cwrap-1.6.9 → cwrap-1.6.10}/tests/test_prototype.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: cwrap
|
3
|
-
Version: 1.6.
|
3
|
+
Version: 1.6.10
|
4
4
|
Summary: cwrap - ctypes blanket
|
5
5
|
Author-email: Equinor ASA <fg_sib-scout@equinor.com>
|
6
6
|
License: GPL-3.0
|
@@ -22,6 +22,7 @@ Classifier: Topic :: Utilities
|
|
22
22
|
Requires-Python: >=3.10
|
23
23
|
Description-Content-Type: text/markdown
|
24
24
|
License-File: LICENSE
|
25
|
+
Dynamic: license-file
|
25
26
|
|
26
27
|
# cwrap
|
27
28
|
|
@@ -0,0 +1,34 @@
|
|
1
|
+
# file generated by setuptools-scm
|
2
|
+
# don't change, don't track in version control
|
3
|
+
|
4
|
+
__all__ = [
|
5
|
+
"__version__",
|
6
|
+
"__version_tuple__",
|
7
|
+
"version",
|
8
|
+
"version_tuple",
|
9
|
+
"__commit_id__",
|
10
|
+
"commit_id",
|
11
|
+
]
|
12
|
+
|
13
|
+
TYPE_CHECKING = False
|
14
|
+
if TYPE_CHECKING:
|
15
|
+
from typing import Tuple
|
16
|
+
from typing import Union
|
17
|
+
|
18
|
+
VERSION_TUPLE = Tuple[Union[int, str], ...]
|
19
|
+
COMMIT_ID = Union[str, None]
|
20
|
+
else:
|
21
|
+
VERSION_TUPLE = object
|
22
|
+
COMMIT_ID = object
|
23
|
+
|
24
|
+
version: str
|
25
|
+
__version__: str
|
26
|
+
__version_tuple__: VERSION_TUPLE
|
27
|
+
version_tuple: VERSION_TUPLE
|
28
|
+
commit_id: COMMIT_ID
|
29
|
+
__commit_id__: COMMIT_ID
|
30
|
+
|
31
|
+
__version__ = version = '1.6.10'
|
32
|
+
__version_tuple__ = version_tuple = (1, 6, 10)
|
33
|
+
|
34
|
+
__commit_id__ = commit_id = 'gfd74d1bee'
|
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: cwrap
|
3
|
-
Version: 1.6.
|
3
|
+
Version: 1.6.10
|
4
4
|
Summary: cwrap - ctypes blanket
|
5
5
|
Author-email: Equinor ASA <fg_sib-scout@equinor.com>
|
6
6
|
License: GPL-3.0
|
@@ -22,6 +22,7 @@ Classifier: Topic :: Utilities
|
|
22
22
|
Requires-Python: >=3.10
|
23
23
|
Description-Content-Type: text/markdown
|
24
24
|
License-File: LICENSE
|
25
|
+
Dynamic: license-file
|
25
26
|
|
26
27
|
# cwrap
|
27
28
|
|
cwrap-1.6.9/src/cwrap/version.py
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
# file generated by setuptools_scm
|
2
|
-
# don't change, don't track in version control
|
3
|
-
TYPE_CHECKING = False
|
4
|
-
if TYPE_CHECKING:
|
5
|
-
from typing import Tuple, Union
|
6
|
-
VERSION_TUPLE = Tuple[Union[int, str], ...]
|
7
|
-
else:
|
8
|
-
VERSION_TUPLE = object
|
9
|
-
|
10
|
-
version: str
|
11
|
-
__version__: str
|
12
|
-
__version_tuple__: VERSION_TUPLE
|
13
|
-
version_tuple: VERSION_TUPLE
|
14
|
-
|
15
|
-
__version__ = version = '1.6.9'
|
16
|
-
__version_tuple__ = version_tuple = (1, 6, 9)
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{cwrap-1.6.9 → cwrap-1.6.10}/GPL
RENAMED
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
|
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
|