-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
37 lines (33 loc) · 1.01 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[tool.poetry]
name = "pyspark-data-sources"
version = "0.1.5"
description = "Custom Spark data sources for reading and writing data in Apache Spark, using the Python Data Source API"
authors = ["allisonwang-db <[email protected]>"]
license = "Apache License 2.0"
readme = "README.md"
packages = [
{ include = "pyspark_datasources" },
]
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.31.0"
faker = {version = "^23.1.0", optional = true}
mkdocstrings = {extras = ["python"], version = "^0.24.0"}
datasets = {version = "^2.17.0", optional = true}
databricks-sdk = {version = "^0.28.0", optional = true}
[tool.poetry.extras]
faker = ["faker"]
datasets = ["datasets"]
databricks = ["databricks-sdk"]
lance = ["pylance"]
all = ["faker", "datasets", "databricks"]
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
grpcio = "^1.60.1"
grpcio-status = "^1.60.1"
pandas = "^2.2.0"
pyarrow = "^15.0.0"
mkdocs-material = "^9.5.9"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"