iis-kix 1.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.
iis_kix-1.0/PKG-INFO ADDED
@@ -0,0 +1,18 @@
1
+ Metadata-Version: 2.4
2
+ Name: iis-kix
3
+ Version: 1.0
4
+ Summary: Example Python Module
5
+ Author-email: IT Services <pypi@iis.fraunhofer.de>
6
+ Project-URL: Homepage, https://www.iis.fraunhofer.de/
7
+ Project-URL: Bug Tracker, https://www.iis.fraunhofer.de/
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.10
12
+ Description-Content-Type: text/markdown
13
+
14
+ # Example Package
15
+
16
+ This is a simple example package. You can use
17
+ [GitHub-flavored Markdown](https://guides.github.com/features/mastering-markdown/)
18
+ to write your content.
iis_kix-1.0/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # Example Package
2
+
3
+ This is a simple example package. You can use
4
+ [GitHub-flavored Markdown](https://guides.github.com/features/mastering-markdown/)
5
+ to write your content.
@@ -0,0 +1,7 @@
1
+ """
2
+ .. include:: ../README.md
3
+ """
4
+
5
+
6
+
7
+ __docformat__ = "restructuredtext"
File without changes
File without changes
File without changes
@@ -0,0 +1,18 @@
1
+ Metadata-Version: 2.4
2
+ Name: iis-kix
3
+ Version: 1.0
4
+ Summary: Example Python Module
5
+ Author-email: IT Services <pypi@iis.fraunhofer.de>
6
+ Project-URL: Homepage, https://www.iis.fraunhofer.de/
7
+ Project-URL: Bug Tracker, https://www.iis.fraunhofer.de/
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.10
12
+ Description-Content-Type: text/markdown
13
+
14
+ # Example Package
15
+
16
+ This is a simple example package. You can use
17
+ [GitHub-flavored Markdown](https://guides.github.com/features/mastering-markdown/)
18
+ to write your content.
@@ -0,0 +1,11 @@
1
+ README.md
2
+ pyproject.toml
3
+ iis_frida/__init__.py
4
+ iis_frida/model/__init__.py
5
+ iis_frida/model/common/__init__.py
6
+ iis_frida/utils/__init__.py
7
+ iis_kix.egg-info/PKG-INFO
8
+ iis_kix.egg-info/SOURCES.txt
9
+ iis_kix.egg-info/dependency_links.txt
10
+ iis_kix.egg-info/top_level.txt
11
+ venv/bin/activate_this.py
@@ -0,0 +1,4 @@
1
+ dist
2
+ iis_frida
3
+ tests
4
+ venv
@@ -0,0 +1,28 @@
1
+ [build-system]
2
+ requires = ["setuptools >= 77.0.3"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [tool.setuptools.packages.find]
6
+ exclude = ["tests"] # exclude packages matching these glob patterns (empty by default)
7
+
8
+ [project]
9
+ name = "iis-kix"
10
+ version = "1.0"
11
+ authors = [
12
+ { name="IT Services", email="pypi@iis.fraunhofer.de" },
13
+ ]
14
+ dependencies = [
15
+
16
+ ]
17
+ description = "Example Python Module"
18
+ readme = "README.md"
19
+ requires-python = ">=3.10"
20
+ classifiers = [
21
+ "Programming Language :: Python :: 3",
22
+ "License :: OSI Approved :: MIT License",
23
+ "Operating System :: OS Independent",
24
+ ]
25
+
26
+ [project.urls]
27
+ "Homepage" = "https://www.iis.fraunhofer.de/"
28
+ "Bug Tracker" = "https://www.iis.fraunhofer.de/"
iis_kix-1.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,36 @@
1
+ """
2
+ Activate virtualenv for current interpreter:
3
+
4
+ Use exec(open(this_file).read(), {'__file__': this_file}).
5
+
6
+ This can be used when you must use an existing Python interpreter, not the virtualenv bin/python.
7
+ """ # noqa: D415
8
+ from __future__ import annotations
9
+
10
+ import os
11
+ import site
12
+ import sys
13
+
14
+ try:
15
+ abs_file = os.path.abspath(__file__)
16
+ except NameError as exc:
17
+ msg = "You must use exec(open(this_file).read(), {'__file__': this_file}))"
18
+ raise AssertionError(msg) from exc
19
+
20
+ bin_dir = os.path.dirname(abs_file)
21
+ base = bin_dir[: -len("bin") - 1] # strip away the bin part from the __file__, plus the path separator
22
+
23
+ # prepend bin to PATH (this file is inside the bin directory)
24
+ os.environ["PATH"] = os.pathsep.join([bin_dir, *os.environ.get("PATH", "").split(os.pathsep)])
25
+ os.environ["VIRTUAL_ENV"] = base # virtual env is right above bin directory
26
+ os.environ["VIRTUAL_ENV_PROMPT"] = "" or os.path.basename(base) # noqa: SIM222
27
+
28
+ # add the virtual environments libraries to the host python import mechanism
29
+ prev_length = len(sys.path)
30
+ for lib in "../lib/python3.9/site-packages".split(os.pathsep):
31
+ path = os.path.realpath(os.path.join(bin_dir, lib))
32
+ site.addsitedir(path.decode("utf-8") if "" else path)
33
+ sys.path[:] = sys.path[prev_length:] + sys.path[0:prev_length]
34
+
35
+ sys.real_prefix = sys.prefix
36
+ sys.prefix = base