-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (58 loc) · 1.73 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "clusterduck"
description = "DuckDB in a Cluster"
version = "0.0.0"
authors = [
{ name = "Hadar Sharon", email = "hadar.sharon94@gmail.com" },
]
requires-python = ">=3.7"
license = { file = "LICENSE" }
readme = "README.md"
keywords = ["DuckDB", "Database", "SQL", "OLAP"]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[project.urls]
Documentation = "https://github.com/hadarsharon/clusterduck/wiki"
Repository = "https://github.com/hadarsharon/clusterduck"
Changelog = "https://github.com/hadarsharon/clusterduck/releases"
[tool.setuptools.packages]
find = { }
[tool.ruff]
line-length = 120
fix = true
[tool.ruff.lint]
exclude = [
"*.md",
".git",
".idea",
".pytest_cache",
".ruff_cache",
".venv",
"CODEOWNERS",
"venv"
]
[tool.ruff.format]
quote-style = "double"
skip-magic-trailing-comma = false
preview = true