-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (62 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
71 lines (62 loc) · 1.63 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
71
[project]
name = "tinybird-sdk"
version = "0.1.9"
description = "Python SDK for Tinybird Forward"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Tinybird", email = "support@tinybird.co" }
]
requires-python = ">=3.11"
dependencies = [
"tinybird==4.5.0",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
]
[project.urls]
Homepage = "https://github.com/tinybirdco/tinybird-sdk-python"
Repository = "https://github.com/tinybirdco/tinybird-sdk-python"
Issues = "https://github.com/tinybirdco/tinybird-sdk-python/issues"
Changelog = "https://github.com/tinybirdco/tinybird-sdk-python/blob/main/CHANGELOG.md"
[project.scripts]
tinybird = "tinybird_sdk.cli.index:main"
[build-system]
requires = ["uv_build>=0.9.26,<0.10.0"]
build-backend = "uv_build"
[tool.pytest.ini_options]
pythonpath = ["src"]
addopts = "-q"
testpaths = ["tests"]
[tool.ruff]
target-version = "py311"
line-length = 100
src = ["src", "tests"]
extend-exclude = ["tests/fixtures/**"]
[tool.ruff.lint]
select = ["E", "F"]
ignore = ["E501", "F401"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.mypy]
python_version = "3.11"
files = ["src"]
warn_unused_configs = true
warn_redundant_casts = true
warn_unused_ignores = true
pretty = true
ignore_missing_imports = true
[dependency-groups]
dev = [
"mypy>=1.18.2",
"pre-commit>=4.3.0",
"pytest>=9.0.2",
"ruff>=0.13.2",
]