-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (50 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
58 lines (50 loc) · 1.22 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
[project]
authors = [{ name = "Michael Harris", email = "mharris@definite.app" }]
license = { text = "MIT" }
requires-python = "<4.0,>=3.10"
dependencies = ["httpx>=0.27", "pydantic<3,>=2"]
name = "cube-http-client"
version = "0.6.1"
description = "Pythonic HTTP client for Cube.js REST API (sync + async)"
readme = "README.md"
keywords = ["cube.js", "cube js", "cube.dev", "cube"]
[project.urls]
homepage = "https://github.com/mharrisb1/cube-http-client"
repository = "https://github.com/mharrisb1/cube-http-client"
documentation = "https://github.com/mharrisb1/cube-http-client"
[dependency-groups]
dev = [
"deadcode>=2.4.1",
"pytest<9.0.0,>=8.3.2",
"pytest-asyncio<1.0.0,>=0.23.8",
"ruff>=0.11.9",
"ty>=0.0.1a1",
]
[tool.pdm.build]
includes = ["src/cube_http"]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"
[tool.ruff]
line-length = 81
[tool.ruff.format]
docstring-code-format = true
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
ignore = ["E501", "F403", "UP007", "UP035", "B008", "B904"]
external = ["DC"]