forked from chdb-io/chdb-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (62 loc) · 2.03 KB
/
Copy pathpyproject.toml
File metadata and controls
68 lines (62 loc) · 2.03 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
[project]
name = "chdb-core"
requires-python = ">=3.9"
version = "0.0.1b1"
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", "chdb-core", "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",
"Programming Language :: C++",
"Topic :: Software Development :: Libraries",
"Topic :: Database",
"Topic :: Scientific/Engineering",
]
dependencies = [
"pandas>=2.1.0",
"pyarrow>=13.0.0"
]
[project.optional-dependencies]
dev = ["pytest", "pytest-cov"]
ci = ["cibuildwheel"]
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-core"
Changelog = "https://github.com/chdb-io/chdb-core/releases"
Issues = "https://github.com/chdb-io/chdb-core/issues"
[build-system]
requires = [
"setuptools>=46.1.0",
"pybind11>=2.6",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.cibuildwheel]
build-frontend = "pip"
build-verbosity = 1
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
[tool.pyright]
include = ["chdb"]
exclude = ["src", "contrib", "programs", "build", "buildlib", "dist", "venv", ".venv", ".vscode", ".git", "__pycache__", ".mypy_cache", ".pytest_cache"]
pythonVersion = "3.9"
typeCheckingMode = "basic"