-
-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (62 loc) · 2.05 KB
/
pyproject.toml
File metadata and controls
69 lines (62 loc) · 2.05 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
61
62
63
64
65
66
67
68
69
[project]
name = "chdb"
requires-python = ">=3.9"
version = "3.7.0"
description = "chDB is an in-process OLAP SQL Engine powered by ClickHouse"
readme = "README.md"
license = {text = "Apache-2.0"}
authors = [
{name = "chDB Team", email = "auxten@clickhouse.com"},
]
keywords = ["chdb", "clickhouse", "olap", "analytics", "database", "sql"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Plugins",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries",
"Topic :: Database",
"Topic :: Scientific/Engineering",
]
dependencies = [
"chdb-core>=26.1.0",
"pandas>=2.1.0",
"pyarrow>=13.0.0"
]
[project.optional-dependencies]
dev = ["pytest", "pytest-cov"]
publish = ["twine", "wheel"]
[project.urls]
Homepage = "https://clickhouse.com/chdb"
Documentation = "https://chdb.readthedocs.io/en/latest/index.html"
Repository = "https://github.com/chdb-io/chdb"
Changelog = "https://github.com/chdb-io/chdb/releases"
Issues = "https://github.com/chdb-io/chdb/issues"
[build-system]
requires = [
"setuptools>=46.1.0",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["datastore*", "chdb"]
namespaces = true
[tool.setuptools.exclude-package-data]
chdb = ["*.dylib", "*.so"]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["datastore/tests"]
[tool.pyright]
include = ["datastore"]
exclude = ["src", "contrib", "programs", "build", "buildlib", "dist", "venv", ".venv", ".vscode", ".git", "__pycache__", ".mypy_cache", ".pytest_cache"]
pythonVersion = "3.9"
typeCheckingMode = "basic"