-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (58 loc) · 1.43 KB
/
pyproject.toml
File metadata and controls
66 lines (58 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
57
58
59
60
61
62
63
64
65
66
# Verdin project configuration
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "verdin"
authors = [
{ name = "Thomas Rausch", email = "info@localstack.cloud" }
]
description = "A Python SDK for Tinybird"
readme = "README.md"
license = "Apache-2.0"
classifiers = [
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: System :: Networking",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities"
]
requires-python = ">=3.10"
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/localstack/verdin"
[project.optional-dependencies]
dev = [
"pytest>=6.2.4",
"ruff==0.9.1",
"pytest_httpserver>=1.0.1",
"coverage[toml]>=5.0",
"pytest-cov>=2.7.1",
"coveralls",
"tinybird",
"build",
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "verdin/version.py"
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.coverage.run]
relative_files = true
source = [
"verdin/"
]
[tool.coverage.report]
exclude_lines = [
"if __name__ == .__main__.:",
"raise NotImplementedError",
"return NotImplemented",
"def __repr__",
]