-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (63 loc) · 1.48 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (63 loc) · 1.48 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
70
[project]
name = "csql"
version = "0.12.0b2"
description = "Simple library for writing composeable SQL queries"
authors = [{ name = "Jarrad Whitaker", email = "akdor1154@gmail.com" }]
requires-python = ">=3.10,<4"
readme = "README.md"
license = "LGPL-3.0-or-later"
keywords = [
"sql",
"analytics",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"Topic :: Database",
]
[project.optional-dependencies]
pandas = ["pandas>=1.3.4"]
polars = ["polars>=1.40.1"]
[project.urls]
Homepage = "https://github.com/akdor1154/python-csql"
Repository = "https://github.com/akdor1154/python-csql"
[dependency-groups]
dev = [
"pytest>=6.1.1",
"mypy>=0.910",
"pandas>=1.3.4",
"ruff>=0.15.12",
"pyright>=1.1.409",
]
notebooks = [
"openpyxl>=3.0.9",
"duckdb>=0.3.1",
"ipykernel>=6.6.0",
]
docs = [
"Sphinx>=4.3.1",
"sphinx-autobuild>=2021.3.14",
"sphinx-rtd-theme>=1.0.0",
"sphinx-external-toc>=0.2.3",
"myst-parser[linkify]>=0.16.1",
"pandas",
"clickhouse-connect",
"polars",
"snowflake-connector-python>=2.7.2",
]
notebook = [
"clickhouse-connect>=0.15.1",
"fastexcel>=0.20.2",
]
[tool.uv]
default-groups = ["dev", "notebooks", "docs"]
[tool.uv.build-backend]
module-name = "csql"
module-root = ""
source-include = ["LICENCE.md"]
[build-system]
requires = ["uv_build>=0.11.12,<0.12"]
build-backend = "uv_build"
[tool.pytest.ini_options]
log_cli_level="DEBUG"
addopts="--ignore=notebooks"