-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'google:main' into i1807-dont-clobber-existing-manager
- Loading branch information
Showing
20 changed files
with
169 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,21 @@ | ||
[build-system] | ||
requires = ["setuptools", "setuptools-scm[toml]", "wheel"] | ||
requires = ["setuptools<73"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "google_benchmark" | ||
description = "A library to benchmark code snippets." | ||
requires-python = ">=3.8" | ||
license = {file = "LICENSE"} | ||
requires-python = ">=3.10" | ||
license = { file = "LICENSE" } | ||
keywords = ["benchmark"] | ||
|
||
authors = [ | ||
{name = "Google", email = "[email protected]"}, | ||
] | ||
authors = [{ name = "Google", email = "[email protected]" }] | ||
|
||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
|
@@ -29,14 +25,10 @@ classifiers = [ | |
|
||
dynamic = ["readme", "version"] | ||
|
||
dependencies = [ | ||
"absl-py>=0.7.1", | ||
] | ||
dependencies = ["absl-py>=0.7.1"] | ||
|
||
[project.optional-dependencies] | ||
dev = [ | ||
"pre-commit>=3.3.3", | ||
] | ||
dev = ["pre-commit>=3.3.3"] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/google/benchmark" | ||
|
@@ -45,16 +37,15 @@ Repository = "https://github.com/google/benchmark.git" | |
Discord = "https://discord.gg/cz7UX7wKC2" | ||
|
||
[tool.setuptools] | ||
package-dir = {"" = "bindings/python"} | ||
package-dir = { "" = "bindings/python" } | ||
zip-safe = false | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["bindings/python"] | ||
|
||
[tool.setuptools.dynamic] | ||
readme = { file = "README.md", content-type = "text/markdown" } | ||
|
||
[tool.setuptools_scm] | ||
version = { attr = "google_benchmark.__version__" } | ||
|
||
[tool.mypy] | ||
check_untyped_defs = true | ||
|
Oops, something went wrong.