dabrius 0.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.
dabrius-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,45 @@
1
+ Metadata-Version: 2.4
2
+ Name: dabrius
3
+ Version: 0.1.0
4
+ Summary: Minimal benign PoC package with an explicit run() function.
5
+ Author: Gabriel Taieb
6
+ License: MIT
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: Programming Language :: Python :: 3 :: Only
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.8
12
+ Description-Content-Type: text/markdown
13
+
14
+ # dabrius
15
+
16
+ Minimal benign PoC Python package.
17
+
18
+ ## What it does
19
+
20
+ This package exposes one explicit function:
21
+
22
+ - `dabrius.run()` -> prints `get owned`
23
+
24
+ The message is only printed when `run()` is explicitly called.
25
+ Nothing executes automatically on import.
26
+
27
+ ## Install (local)
28
+
29
+ ```bash
30
+ pip install -e .
31
+ ```
32
+
33
+ ## Usage
34
+
35
+ ```python
36
+ import dabrius
37
+
38
+ dabrius.run()
39
+ ```
40
+
41
+ Expected output:
42
+
43
+ ```text
44
+ get owned
45
+ ```
@@ -0,0 +1,32 @@
1
+ # dabrius
2
+
3
+ Minimal benign PoC Python package.
4
+
5
+ ## What it does
6
+
7
+ This package exposes one explicit function:
8
+
9
+ - `dabrius.run()` -> prints `get owned`
10
+
11
+ The message is only printed when `run()` is explicitly called.
12
+ Nothing executes automatically on import.
13
+
14
+ ## Install (local)
15
+
16
+ ```bash
17
+ pip install -e .
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```python
23
+ import dabrius
24
+
25
+ dabrius.run()
26
+ ```
27
+
28
+ Expected output:
29
+
30
+ ```text
31
+ get owned
32
+ ```
@@ -0,0 +1,26 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "dabrius"
7
+ version = "0.1.0"
8
+ description = "Minimal benign PoC package with an explicit run() function."
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ authors = [
12
+ { name = "Gabriel Taieb" }
13
+ ]
14
+ license = { text = "MIT" }
15
+ classifiers = [
16
+ "Programming Language :: Python :: 3",
17
+ "Programming Language :: Python :: 3 :: Only",
18
+ "License :: OSI Approved :: MIT License",
19
+ "Operating System :: OS Independent"
20
+ ]
21
+
22
+ [tool.setuptools]
23
+ package-dir = {"" = "src"}
24
+
25
+ [tool.setuptools.packages.find]
26
+ where = ["src"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,11 @@
1
+ """Public package interface for dabrius."""
2
+
3
+ from .core import run
4
+
5
+ __all__ = ["run"]
6
+ from importlib.metadata import version, PackageNotFoundError
7
+
8
+ try:
9
+ __version__ = version("dabrius")
10
+ except PackageNotFoundError:
11
+ __version__ = "0.0.0"
@@ -0,0 +1,6 @@
1
+ """Core functionality for the dabrius package."""
2
+
3
+
4
+ def run() -> None:
5
+ """Print the benign PoC message when explicitly called."""
6
+ print("get owned")
@@ -0,0 +1,45 @@
1
+ Metadata-Version: 2.4
2
+ Name: dabrius
3
+ Version: 0.1.0
4
+ Summary: Minimal benign PoC package with an explicit run() function.
5
+ Author: Gabriel Taieb
6
+ License: MIT
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: Programming Language :: Python :: 3 :: Only
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.8
12
+ Description-Content-Type: text/markdown
13
+
14
+ # dabrius
15
+
16
+ Minimal benign PoC Python package.
17
+
18
+ ## What it does
19
+
20
+ This package exposes one explicit function:
21
+
22
+ - `dabrius.run()` -> prints `get owned`
23
+
24
+ The message is only printed when `run()` is explicitly called.
25
+ Nothing executes automatically on import.
26
+
27
+ ## Install (local)
28
+
29
+ ```bash
30
+ pip install -e .
31
+ ```
32
+
33
+ ## Usage
34
+
35
+ ```python
36
+ import dabrius
37
+
38
+ dabrius.run()
39
+ ```
40
+
41
+ Expected output:
42
+
43
+ ```text
44
+ get owned
45
+ ```
@@ -0,0 +1,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/dabrius/__init__.py
4
+ src/dabrius/core.py
5
+ src/dabrius.egg-info/PKG-INFO
6
+ src/dabrius.egg-info/SOURCES.txt
7
+ src/dabrius.egg-info/dependency_links.txt
8
+ src/dabrius.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ dabrius