-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (54 loc) · 1.71 KB
/
pyproject.toml
File metadata and controls
60 lines (54 loc) · 1.71 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
51
52
53
54
55
56
57
58
59
60
[build-system]
requires = ["maturin>=1.7,<2.0"]
build-backend = "maturin"
[project]
name = "laminardb"
version = "0.18.13"
description = "Python bindings for LaminarDB streaming SQL database"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [{ name = "LaminarDB Contributors" }]
keywords = ["database", "streaming", "sql", "arrow", "dataframe", "stream-processing"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Database",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://github.com/laminardb/laminardb-python"
Documentation = "https://github.com/laminardb/laminardb-python#readme"
Repository = "https://github.com/laminardb/laminardb-python"
Changelog = "https://github.com/laminardb/laminardb-python/blob/main/CHANGELOG.md"
Issues = "https://github.com/laminardb/laminardb-python/issues"
[project.optional-dependencies]
pandas = ["pandas>=2.0", "pyarrow>=14.0"]
polars = ["polars>=0.20"]
pyarrow = ["pyarrow>=14.0"]
dev = [
"pytest>=8.0",
"pytest-asyncio>=1.0",
"hypothesis>=6.0",
"pyarrow>=14.0",
"pandas>=2.0",
"polars>=0.20",
"mypy>=1.10",
]
[tool.maturin]
python-source = "python"
module-name = "laminardb._laminardb"
features = ["pyo3/extension-module"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.mypy]
python_version = "3.11"
strict = true