Skip to content

Commit

Permalink
Update pyproject definition in pyproject.toml (#405)
Browse files Browse the repository at this point in the history
  • Loading branch information
fvaleye authored Aug 22, 2021
1 parent 3f87e76 commit 6327605
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
10 changes: 8 additions & 2 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"',
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions python/stubs/deltalake/deltalake.pyi
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import Any
from typing import Any, Callable

RawDeltaTable: Any
rust_core_version: Any
rust_core_version: Callable[[], str]

0 comments on commit 6327605

Please sign in to comment.