We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02cc810 commit 057f4f2Copy full SHA for 057f4f2
.github/workflows/release.yml
@@ -25,8 +25,10 @@ jobs:
25
- name: Install
26
run: |
27
python -m pip install -U pip
28
+ # Install package build tooling and publishing helpers
29
+ python -m pip install build python-semantic-release pip-audit twine
30
+ # Install the package to ensure entry points are available for smoke checks
31
python -m pip install .
- python -m pip install build python-semantic-release pip-audit
32
- name: Build and verify
33
34
python -m build
pyproject.toml
@@ -46,6 +46,9 @@ local-storage-utils = "cli:app"
46
where = ["."]
47
include = ["commands*"]
48
49
+[tool.setuptools]
50
+py-modules = ["cli"]
51
+
52
[tool.black]
53
line-length = 100
54
0 commit comments