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.
- phazebreak_example_py_package_public-3.0.0/.python-version +1 -0
- phazebreak_example_py_package_public-3.0.0/CHANGELOG.md +3 -0
- phazebreak_example_py_package_public-3.0.0/PKG-INFO +10 -0
- phazebreak_example_py_package_public-3.0.0/README.md +3 -0
- phazebreak_example_py_package_public-3.0.0/example_py_package_public/__init__.py +1 -0
- phazebreak_example_py_package_public-3.0.0/example_py_package_public/hello.py +6 -0
- phazebreak_example_py_package_public-3.0.0/project.json +84 -0
- phazebreak_example_py_package_public-3.0.0/pyproject.toml +47 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.9.5
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Automatically generated by Nx."""
|
|
@@ -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"
|