-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (44 loc) · 1.43 KB
/
pyproject.toml
File metadata and controls
56 lines (44 loc) · 1.43 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
[build-system]
requires = ["setuptools>=80.9.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "qluster_sdk"
version = "2.77.0"
description = "SDK for writing custom validation, correction, and enrichment rules for the Qluster platform"
requires-python = ">=3.12"
authors = [
{ name = "Qluster Engineering", email = "support@qluster.ai" },
]
readme = { file = "README.md", content-type = "text/markdown" }
license = "MIT"
dependencies = [
"pydantic>=2.0",
"packaging>=21.0",
]
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Development Status :: 5 - Production/Stable",
]
[project.optional-dependencies]
dev = [
"pytest==9.0.2",
"pytest-cov==7.0.0",
"ruff>=0.4.0",
]
[project.urls]
Homepage = "https://qluster.ai"
Documentation = "https://github.com/qlustered/qluster-sdk"
Repository = "https://github.com/qlustered/qluster-sdk"
Issues = "https://github.com/qlustered/qluster-sdk/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
# This configuration assumes your packages are in the root of your project (where pyproject.toml is).
# If your packages are in a directory like 'src', use: where = ["src"]
exclude = ["tests*", "docs*"]
[tool.pytest.ini_options]