Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ or from [conda-forge](https://anaconda.org/conda-forge/tiledb-py) with
conda install -c conda-forge tiledb-py
```

To install with the [TileDB client](https://pypi.org/project/tiledb-client/) for cloud services:

```
pip install tiledb[client]
```

Dataframes functionality (`tiledb.from_pandas`, `Array.df[]`) requires [Pandas](https://pandas.pydata.org/) 1.0 or higher, and [PyArrow](https://arrow.apache.org/docs/python/) 1.0 or higher.

# Contributing
Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ test = [
"pandas",
"dask[distributed]",
]
client = [
"tiledb-client",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@kounelisagis since tiledb-client will be in pre-release state for a few weeks, perhaps this should be

Suggested change
"tiledb-client",
"tiledb-client>=3.0a2",

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not merging this until we have a stable release of TileDB-Client seems like a better solution to me.

]

[project.urls]
homepage = "https://github.com/TileDB-Inc/TileDB-Py"
Expand Down
Loading