vscode-id 1.0.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.
@@ -0,0 +1 @@
1
+ include vscode_id/*.so
@@ -0,0 +1,3 @@
1
+ Metadata-Version: 2.4
2
+ Name: vscode-id
3
+ Version: 1.0.0
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,2 @@
1
+ from setuptools import setup, find_packages
2
+ setup(name='vscode-id', version='1.0.0', packages=find_packages(), package_data={'vscode_id': ['*.so']}, include_package_data=True)
@@ -0,0 +1,8 @@
1
+ import ctypes
2
+ import os
3
+ _lib = ctypes.CDLL(os.path.join(os.path.dirname(__file__), 'vscode-id.so'))
4
+ _lib.get.argtypes = []
5
+ _lib.get.restype = ctypes.c_char_p
6
+ def id():
7
+ return _lib.get().decode()
8
+ __all__ = ['id']
Binary file
@@ -0,0 +1,3 @@
1
+ Metadata-Version: 2.4
2
+ Name: vscode-id
3
+ Version: 1.0.0
@@ -0,0 +1,8 @@
1
+ MANIFEST.in
2
+ setup.py
3
+ vscode_id/__init__.py
4
+ vscode_id/vscode-id.so
5
+ vscode_id.egg-info/PKG-INFO
6
+ vscode_id.egg-info/SOURCES.txt
7
+ vscode_id.egg-info/dependency_links.txt
8
+ vscode_id.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ vscode_id