Skip to content

Commit ddeae00

Browse files
committed
Update license and use uv to build
1 parent bff9459 commit ddeae00

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ check:
99

1010
build:
1111
rm -rf dist
12-
python3 -m build
12+
uv build
1313

1414
upload: build
15-
twine3 upload dist/*
15+
uv-publish
1616

1717
doc:
1818
update-readme-usage

pyproject.toml

+1-3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ build-backend = "setuptools.build_meta"
66
name = "debugpy-run"
77
description = "Finds and runs debugpy for VS Code \"remote attach\" command line debugging"
88
readme = "README.md"
9+
license = "GPL-3.0-or-later"
910
requires-python = ">=3.6"
1011
keywords = ["debugpy", "vscode", "code", "ptvsd"]
1112
classifiers = [
@@ -27,9 +28,6 @@ Homepage = "https://github.com/bulletmark/debugpy-run"
2728
[project.scripts]
2829
debugpy-run = "debugpy_run:main"
2930

30-
[project.license]
31-
text = "GPLv3"
32-
3331
[tool.setuptools_scm]
3432
version_scheme = "post-release"
3533

0 commit comments

Comments
 (0)