Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ authors = [
]
description = "A fork of the GYP build system for use in the Node.js projects"
readme = "README.md"
license = { file="LICENSE" }
license = "BSD-3-Clause"
license-files = ["LICENSE"]
requires-python = ">=3.8"
dependencies = ["packaging>=24.0", "setuptools>=69.5.1"]
dependencies = ["packaging>=24.0", "setuptools>=77.0.3"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
Expand All @@ -32,6 +32,10 @@ dev = ["pytest", "ruff"]

[project.scripts]
gyp = "gyp:script_main"
# TODO(cclauss): Enable these tools
# graphviz = "tools.graphviz:main"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think graphviz is a well-known name and we should not expose the tool in the name of graphviz.

# pretty_sln = "tools.pretty_sln:main"
# pretty_vcproj = "tools.pretty_vcproj:main"

[project.urls]
"Homepage" = "https://github.com/nodejs/gyp-next"
Expand Down
Loading