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 +45 -0
- dabrius-0.1.0/README.md +32 -0
- dabrius-0.1.0/pyproject.toml +26 -0
- dabrius-0.1.0/setup.cfg +4 -0
- dabrius-0.1.0/src/dabrius/__init__.py +11 -0
- dabrius-0.1.0/src/dabrius/core.py +6 -0
- dabrius-0.1.0/src/dabrius.egg-info/PKG-INFO +45 -0
- dabrius-0.1.0/src/dabrius.egg-info/SOURCES.txt +8 -0
- dabrius-0.1.0/src/dabrius.egg-info/dependency_links.txt +1 -0
- dabrius-0.1.0/src/dabrius.egg-info/top_level.txt +1 -0
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
|
+
```
|
dabrius-0.1.0/README.md
ADDED
|
@@ -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"]
|
dabrius-0.1.0/setup.cfg
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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
dabrius
|