-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
50 lines (44 loc) · 1.25 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "jsoniq"
version = "2.0.9"
description = "Python edition of RumbleDB, a JSONiq engine"
requires-python = ">=3.11"
dependencies = [
"pyspark==4.0.1",
"pandas>=2.2",
"delta-spark==4.0"
]
authors = [
{name = "Ghislain Fourny", email = "ghislain.fourny@inf.ethz.ch"},
{name = "Abishek Ramdas"},
]
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["jsoniq", "spark", "apache-spark", "dataframe", "heterogeneous", "json", "query"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Typing :: Typed",
"License :: OSI Approved :: Apache Software License"
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
jsoniq = ["jars/*.jar"]
[project.urls]
Homepage = "https://rumbledb.org"
Documentation = "https://rumble.readthedocs.io/en/latest/"
Repository = "https://github.com/RumbleDB/python-jsoniq.git"
"Bug Tracker" = "https://github.com/RumbleDB/python-jsoniq/issues"
[tool.black]
line-length = 88
[tool.pytest.ini_options]
pythonpath = [
"src"
]