From 63276058327712e01284db27590edc3e39ab189d Mon Sep 17 00:00:00 2001 From: fvaleye Date: Sun, 22 Aug 2021 21:02:20 +0200 Subject: [PATCH] Update pyproject definition in pyproject.toml (#405) --- python/pyproject.toml | 10 ++++++++-- python/stubs/deltalake/deltalake.pyi | 4 ++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/python/pyproject.toml b/python/pyproject.toml index 25dd3fb196..1482cadcd5 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -4,13 +4,15 @@ build-backend = "maturin" [project] name = "deltalake" +description = "Native Delta Lake Python binding based on delta-rs with Pandas integration" +readme = "README.md" requires-python = ">=3.6" -classifier = [ +keywords = ["deltalake", "delta", "datalake", "pandas", "arrow"] +classifiers = [ "Development Status :: 3 - Alpha", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 3 :: Only" ] -project-url = { Repo = "https://github.com/delta-io/delta-rs", Documentation = "https://delta-io.github.io/delta-rs/python/", "Bug Tracker" = "https://github.com/delta-io/delta-rs/issues" } dependencies = [ "pyarrow>=4", 'numpy<1.20.0;python_version<="3.6"', @@ -35,6 +37,10 @@ devel = [ "pandas" ] +[project.urls] +documentation = "https://delta-io.github.io/delta-rs/python/" +repository = "https://github.com/delta-io/delta-rs" + [tool.mypy] files = "deltalake/*.py" exclude = "^tests" diff --git a/python/stubs/deltalake/deltalake.pyi b/python/stubs/deltalake/deltalake.pyi index d3c5529703..07e4e38f11 100644 --- a/python/stubs/deltalake/deltalake.pyi +++ b/python/stubs/deltalake/deltalake.pyi @@ -1,4 +1,4 @@ -from typing import Any +from typing import Any, Callable RawDeltaTable: Any -rust_core_version: Any \ No newline at end of file +rust_core_version: Callable[[], str] \ No newline at end of file