Skip to content
Merged
Show file tree
Hide file tree
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
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
[build-system]
requires = [
"cmake>=3.29,<4.0.0", # For building binary targets in the wheel. 4.0.0 breaks third-party CMake build so temporarily pin the version.
"packaging>=24.2", # Lower bound required by setuptools
"pip>=23", # For building the pip package.
"pyyaml", # Imported by the kernel codegen tools.
"setuptools>=63", # For building the pip package contents.
"setuptools>=77.0.3", # For building the pip package contents.
"wheel", # For building the pip package archive.
"zstd", # Imported by resolve_buck.py.
"certifi", # Imported by resolve_buck.py.
Expand All @@ -21,7 +22,8 @@ readme = "README-wheel.md"
authors = [
{name="PyTorch Team", email="packages@pytorch.org"},
]
license = {file = "LICENSE"}
license = "BSD-3-Clause"
license-files = ["LICENSE"]
keywords = ["pytorch", "machine learning"]
# PyPI package information.
classifiers = [
Expand All @@ -33,7 +35,6 @@ classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
Expand Down
3 changes: 2 additions & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# Pip packages needed to build from source. Mainly for development of ExecuTorch.

cmake>=3.29, <4.0.0 # For building binary targets in the wheel.
packaging>=24.2 # Lower bound required by setuptools
pip>=23 # For building the pip package.
pyyaml # Imported by the kernel codegen tools.
setuptools>=63 # For building the pip package contents.
setuptools>=77.0.3 # For building the pip package contents.
wheel # For building the pip package archive.
zstd # Imported by resolve_buck.py.
certifi # Imported by resolve_buck.py.
Expand Down
Loading