phazebreak-example-py-package-public 3.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,3 @@
1
+ # 3.0.0 (2026-05-06)
2
+
3
+ This was a version bump only for example-py-package-public to align it with other projects, there were no code changes.
@@ -0,0 +1,10 @@
1
+ Metadata-Version: 2.4
2
+ Name: phazebreak-example-py-package-public
3
+ Version: 3.0.0
4
+ Summary: Automatically generated by Nx.
5
+ Requires-Python: <4,>=3.9
6
+ Description-Content-Type: text/markdown
7
+
8
+ # example-py-package-public
9
+
10
+ Project description here.
@@ -0,0 +1,3 @@
1
+ # example-py-package-public
2
+
3
+ Project description here.
@@ -0,0 +1 @@
1
+ """Automatically generated by Nx."""
@@ -0,0 +1,6 @@
1
+ """Sample Hello World application."""
2
+
3
+
4
+ def hello():
5
+ """Return a friendly greeting."""
6
+ return "Hello example-py-package-public"
@@ -0,0 +1,84 @@
1
+ {
2
+ "name": "example-py-package-public",
3
+ "$schema": "../node_modules/nx/schemas/project-schema.json",
4
+ "projectType": "application",
5
+ "sourceRoot": "example-py-package-public/example_py_package_public",
6
+ "targets": {
7
+ "lock": {
8
+ "executor": "@nxlv/python:lock",
9
+ "options": {
10
+ "update": false
11
+ }
12
+ },
13
+ "sync": {
14
+ "executor": "@nxlv/python:sync",
15
+ "options": {}
16
+ },
17
+ "add": {
18
+ "executor": "@nxlv/python:add",
19
+ "options": {}
20
+ },
21
+ "update": {
22
+ "executor": "@nxlv/python:update",
23
+ "options": {}
24
+ },
25
+ "remove": {
26
+ "executor": "@nxlv/python:remove",
27
+ "options": {}
28
+ },
29
+ "build": {
30
+ "executor": "@nxlv/python:build",
31
+ "outputs": ["{projectRoot}/dist"],
32
+ "options": {
33
+ "outputPath": "{projectRoot}/dist",
34
+ "publish": false,
35
+ "lockedVersions": true,
36
+ "bundleLocalDependencies": true
37
+ },
38
+ "cache": true
39
+ },
40
+ "lint": {
41
+ "executor": "@nxlv/python:ruff-check",
42
+ "outputs": [],
43
+ "options": {
44
+ "lintFilePatterns": ["example_py_package_public", "tests"]
45
+ },
46
+ "cache": true
47
+ },
48
+ "format": {
49
+ "executor": "@nxlv/python:ruff-format",
50
+ "outputs": [],
51
+ "options": {
52
+ "filePatterns": ["example_py_package_public", "tests"]
53
+ },
54
+ "cache": true
55
+ },
56
+ "test": {
57
+ "executor": "@nxlv/python:run-commands",
58
+ "outputs": [
59
+ "{workspaceRoot}/reports/{projectRoot}/unittests",
60
+ "{workspaceRoot}/coverage/{projectRoot}"
61
+ ],
62
+ "options": {
63
+ "command": "uv run pytest tests/",
64
+ "cwd": "{projectRoot}"
65
+ },
66
+ "cache": true
67
+ },
68
+ "install": {
69
+ "executor": "@nxlv/python:install",
70
+ "options": {
71
+ "silent": false,
72
+ "args": "",
73
+ "verbose": false,
74
+ "debug": false
75
+ }
76
+ }
77
+ },
78
+ "tags": [],
79
+ "release": {
80
+ "version": {
81
+ "versionActions": "@nxlv/python/release/version-actions"
82
+ }
83
+ }
84
+ }
@@ -0,0 +1,47 @@
1
+ dependency-groups = { }
2
+
3
+ [tool.coverage.run]
4
+ branch = true
5
+ source = [ "example_py_package_public" ]
6
+
7
+ [tool.coverage.report]
8
+ exclude_lines = [ "if TYPE_CHECKING:" ]
9
+ show_missing = true
10
+
11
+ [tool.pytest.ini_options]
12
+ addopts = """
13
+ --cov\r
14
+ --cov-report html:'../coverage/example-py-package-public/html'\r
15
+ --cov-report xml:'../coverage/example-py-package-public/coverage.xml'\r
16
+ --html='../reports/example-py-package-public/unittests/html/index.html'\r
17
+ --junitxml='../reports/example-py-package-public/unittests/junit.xml'\r
18
+ """
19
+
20
+ [tool.hatch.build.targets.wheel]
21
+ packages = [ "example_py_package_public" ]
22
+
23
+ [tool.hatch.metadata]
24
+ allow-direct-references = true
25
+
26
+ [tool.ruff]
27
+ exclude = [ ".ruff_cache", ".svn", ".tox", ".venv", "dist" ]
28
+ line-length = 88
29
+ indent-width = 4
30
+
31
+ [tool.ruff.lint]
32
+ select = [ "E", "F", "UP", "B", "SIM", "I" ]
33
+ ignore = [ ]
34
+ fixable = [ "ALL" ]
35
+ unfixable = [ ]
36
+
37
+ [project]
38
+ name = "phazebreak-example-py-package-public"
39
+ version = "3.0.0"
40
+ description = "Automatically generated by Nx."
41
+ requires-python = ">=3.9,<4"
42
+ readme = "README.md"
43
+ dependencies = [ ]
44
+
45
+ [build-system]
46
+ requires = [ "hatchling" ]
47
+ build-backend = "hatchling.build"