This is an automated email from the ASF dual-hosted git repository.
fokko pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-python.git
The following commit(s) were added to refs/heads/main by this push:
new 551fc5da4 pyproject: Move homepage and repo up (#2736)
551fc5da4 is described below
commit 551fc5da4dee997e9d06090382495f9e397b37a4
Author: Kevin Liu <[email protected]>
AuthorDate: Tue Nov 11 14:44:13 2025 -0800
pyproject: Move homepage and repo up (#2736)
<!--
Thanks for opening a pull request!
-->
<!-- In the case this PR will resolve an issue, please replace
${GITHUB_ISSUE_ID} below with the actual Github issue id. -->
<!-- Closes #${GITHUB_ISSUE_ID} -->
# Rationale for this change
Move these links up, otherwise its buried in the list of dependencies
## Are these changes tested?
N/A
## Are there any user-facing changes?
<!-- In the case of user-facing changes, please add the changelog label.
-->
No
---
pyproject.toml | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/pyproject.toml b/pyproject.toml
index 6d35803ac..46fb3c561 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -45,6 +45,13 @@ dependencies = [
"zstandard>=0.13.0,<1.0.0"
]
+[project.urls]
+Homepage = "https://py.iceberg.apache.org/"
+Repository = "https://github.com/apache/iceberg-python"
+
+[project.scripts]
+pyiceberg = "pyiceberg.cli.console:run"
+
[project.optional-dependencies]
pyarrow = [
"pyarrow>=17.0.0",
@@ -93,13 +100,6 @@ pyiceberg-core = ["pyiceberg-core>=0.5.1,<0.8.0"]
datafusion = ["datafusion>=45,<49"]
gcp-auth = ["google-auth>=2.4.0"]
-[project.urls]
-Homepage = "https://py.iceberg.apache.org/"
-Repository = "https://github.com/apache/iceberg-python"
-
-[project.scripts]
-pyiceberg = "pyiceberg.cli.console:run"
-
[dependency-groups]
dev = [
"pytest==7.4.4",