forked from allisonwang-db/pyspark-data-sources
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (31 loc) · 972 Bytes
/
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
[tool.poetry]
name = "pyspark-data-sources"
version = "0.1.2"
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.28.1"
faker = { version = "^23.1.0", optional = true }
mkdocstrings = { extras = ["python"], version = "^0.24.0" }
datasets = { version = "^2.17.0", optional = true }
validators = "^0.22.0"
httpx = "^0.27.0"
authlib = "^1.3.0"
[tool.poetry.extras]
faker = ["faker"]
datasets = ["datasets"]
all = ["faker", "datasets"]
[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"