Skip to content

Commit 0c232d3

Browse files
committed
fix(build): Use SPDX license expression
1 parent 0e43f61 commit 0c232d3

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

pyproject.toml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ authors = [
1010
]
1111
description = "A fork of the GYP build system for use in the Node.js projects"
1212
readme = "README.md"
13-
license = { file="LICENSE" }
13+
license = "BSD-3-Clause"
14+
license-files = ["LICENSE"]
1415
requires-python = ">=3.8"
15-
dependencies = ["packaging>=24.0", "setuptools>=69.5.1"]
16+
dependencies = ["packaging>=24.0", "setuptools>=77.0.3"]
1617
classifiers = [
1718
"Development Status :: 3 - Alpha",
1819
"Environment :: Console",
1920
"Intended Audience :: Developers",
20-
"License :: OSI Approved :: BSD License",
2121
"Natural Language :: English",
2222
"Programming Language :: Python",
2323
"Programming Language :: Python :: 3",
@@ -32,6 +32,10 @@ dev = ["pytest", "ruff"]
3232

3333
[project.scripts]
3434
gyp = "gyp:script_main"
35+
# TODO(cclauss): Enable these tools
36+
# graphviz = "tools.graphviz:main"
37+
# pretty_sln = "tools.pretty_sln:main"
38+
# pretty_vcproj = "tools.pretty_vcproj:main"
3539

3640
[project.urls]
3741
"Homepage" = "https://github.com/nodejs/gyp-next"

0 commit comments

Comments
 (0)