Skip to content

Commit 6327605

Browse files
authoredAug 22, 2021
Update pyproject definition in pyproject.toml (#405)
1 parent 3f87e76 commit 6327605

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed
 

‎python/pyproject.toml

+8-2
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,15 @@ build-backend = "maturin"
44

55
[project]
66
name = "deltalake"
7+
description = "Native Delta Lake Python binding based on delta-rs with Pandas integration"
8+
readme = "README.md"
79
requires-python = ">=3.6"
8-
classifier = [
10+
keywords = ["deltalake", "delta", "datalake", "pandas", "arrow"]
11+
classifiers = [
912
"Development Status :: 3 - Alpha",
1013
"License :: OSI Approved :: Apache Software License",
1114
"Programming Language :: Python :: 3 :: Only"
1215
]
13-
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" }
1416
dependencies = [
1517
"pyarrow>=4",
1618
'numpy<1.20.0;python_version<="3.6"',
@@ -35,6 +37,10 @@ devel = [
3537
"pandas"
3638
]
3739

40+
[project.urls]
41+
documentation = "https://delta-io.github.io/delta-rs/python/"
42+
repository = "https://github.com/delta-io/delta-rs"
43+
3844
[tool.mypy]
3945
files = "deltalake/*.py"
4046
exclude = "^tests"

‎python/stubs/deltalake/deltalake.pyi

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from typing import Any
1+
from typing import Any, Callable
22

33
RawDeltaTable: Any
4-
rust_core_version: Any
4+
rust_core_version: Callable[[], str]

0 commit comments

Comments
 (0)
Please sign in to comment.