hb-v5-basic-func 0.0.1__py3-none-any.whl → 0.0.2__py3-none-any.whl

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: hb-v5-basic-func
3
- Version: 0.0.1
3
+ Version: 0.0.2
4
4
  Summary: Basic function package with Pyarmor protection
5
5
  Home-page: https://github.com/unknown/hb_v5_basic_func
6
6
  Author: Unknown
@@ -0,0 +1,10 @@
1
+ hb_v5_basic_func/__init__.py,sha256=VaLasjyVBp2PvOscb4mTNVUdc_az3ApyffielowLhIQ,327
2
+ hb_v5_basic_func/index.py,sha256=9SovK9mY8372Yy6Mj4dhzRymXeN-uYwqnDboc5x0tFc,57217
3
+ hb_v5_basic_func/pyarmor_runtime_000000/__init__.py,sha256=TOTFy-lci3h6g8bbA88tqfdU4-F9lSEAdvKK9zzXR8M,101
4
+ hb_v5_basic_func/pyarmor_runtime_000000/pyarmor_runtime.so,sha256=E4deO8jUoFLPkitgSLctxs9I9lrlTGUQCBziEA_jLTo,898576
5
+ pyarmor_runtime_000000/__init__.py,sha256=eFNpbGq1NeJ961rEOzuKIthYvcV7EXqDDz84LDLtMQs,101
6
+ pyarmor_runtime_000000/setup.py,sha256=wo4k5chwTV25i35ECHTESWejgaf1mey5LsliI5z2h0o,1521
7
+ hb_v5_basic_func-0.0.2.dist-info/METADATA,sha256=qlQ21g1V-TtOlIvrJQMK3tIY9HZWhOXNYapNCPq4g7s,995
8
+ hb_v5_basic_func-0.0.2.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
9
+ hb_v5_basic_func-0.0.2.dist-info/top_level.txt,sha256=bHewI-7PCgpFHvOaw8jHjtf62ijqEERJPHhAofEJogI,40
10
+ hb_v5_basic_func-0.0.2.dist-info/RECORD,,
@@ -0,0 +1,2 @@
1
+ hb_v5_basic_func
2
+ pyarmor_runtime_000000
@@ -0,0 +1,2 @@
1
+ # Pyarmor 9.1.8 (trial), 000000, 2025-09-11T03:58:40.078521
2
+ from .pyarmor_runtime import __pyarmor__
@@ -0,0 +1,46 @@
1
+ #!/usr/bin/env python3
2
+ """
3
+ Setup script for pyarmor_runtime_000000 package
4
+ """
5
+
6
+ from setuptools import setup
7
+ import os
8
+
9
+ # Get the directory containing this setup.py
10
+ here = os.path.abspath(os.path.dirname(__file__))
11
+
12
+ setup(
13
+ name="pyarmor_runtime_000000",
14
+ version="1.0.0",
15
+ author="Pyarmor",
16
+ author_email="pyarmor@example.com",
17
+ description="Pyarmor runtime package for protected Python code",
18
+ long_description="Runtime package generated by Pyarmor for executing protected Python code",
19
+ long_description_content_type="text/plain",
20
+ packages=["pyarmor_runtime_000000"],
21
+ package_dir={"pyarmor_runtime_000000": "."},
22
+ py_modules=[],
23
+ classifiers=[
24
+ "Development Status :: 5 - Production/Stable",
25
+ "Intended Audience :: Developers",
26
+ "License :: OSI Approved :: MIT License",
27
+ "Operating System :: OS Independent",
28
+ "Programming Language :: Python :: 3",
29
+ "Programming Language :: Python :: 3.6",
30
+ "Programming Language :: Python :: 3.7",
31
+ "Programming Language :: Python :: 3.8",
32
+ "Programming Language :: Python :: 3.9",
33
+ "Programming Language :: Python :: 3.10",
34
+ "Programming Language :: Python :: 3.11",
35
+ "Programming Language :: Python :: 3.12",
36
+ ],
37
+ python_requires=">=3.6",
38
+ include_package_data=True,
39
+ package_data={
40
+ "pyarmor_runtime_000000": [
41
+ "*.so",
42
+ "*.py",
43
+ ],
44
+ },
45
+ zip_safe=False, # Pyarmor runtime requires files to be extracted
46
+ )
@@ -1,8 +0,0 @@
1
- hb_v5_basic_func/__init__.py,sha256=VaLasjyVBp2PvOscb4mTNVUdc_az3ApyffielowLhIQ,327
2
- hb_v5_basic_func/index.py,sha256=9SovK9mY8372Yy6Mj4dhzRymXeN-uYwqnDboc5x0tFc,57217
3
- hb_v5_basic_func/pyarmor_runtime_000000/__init__.py,sha256=TOTFy-lci3h6g8bbA88tqfdU4-F9lSEAdvKK9zzXR8M,101
4
- hb_v5_basic_func/pyarmor_runtime_000000/pyarmor_runtime.so,sha256=E4deO8jUoFLPkitgSLctxs9I9lrlTGUQCBziEA_jLTo,898576
5
- hb_v5_basic_func-0.0.1.dist-info/METADATA,sha256=n0bWjEjEs9EafTWiZoJgQi2imN1OR_ZINDmcvFtvhPI,995
6
- hb_v5_basic_func-0.0.1.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
7
- hb_v5_basic_func-0.0.1.dist-info/top_level.txt,sha256=N64gfhJ7yijFkRf783mlqle6igAoxlMddDrHdm6TYRg,17
8
- hb_v5_basic_func-0.0.1.dist-info/RECORD,,
@@ -1 +0,0 @@
1
- hb_v5_basic_func