-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (64 loc) · 1.82 KB
/
Copy pathpyproject.toml
File metadata and controls
73 lines (64 loc) · 1.82 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
72
73
[project]
name = "linear-python-client"
version = "0.2.2"
description = "Pragmatic Python client for the Linear GraphQL API"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "eli-the-wizard", email = "ewinter@hackerone.com" }
]
requires-python = ">=3.13"
keywords = ["linear", "linear.app", "graphql", "api", "client", "sdk"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = [
"httpx>=0.27",
"pydantic>=2.7",
]
[project.urls]
Homepage = "https://github.com/Hacker0x01/linear-python-client"
Documentation = "https://hacker0x01.github.io/linear-python-client/"
Repository = "https://github.com/Hacker0x01/linear-python-client"
Issues = "https://github.com/Hacker0x01/linear-python-client/issues"
[build-system]
requires = ["uv_build>=0.11.19,<0.12.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"mypy>=1.11",
"pytest>=8.0",
"pytest-cov>=5.0",
"respx>=0.21",
"ruff>=0.6",
]
docs = [
"mkdocs>=1.6",
"mkdocs-material>=9.5",
"mkdocstrings[python]>=0.26",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--cov=linear_python_client --cov-report=term-missing --cov-fail-under=90"
[tool.coverage.run]
branch = true
source = ["linear_python_client"]
[tool.coverage.report]
show_missing = true
# The optional live smoke test only runs when LINEAR_API_KEY is set.
exclude_also = ["if __name__ == .__main__.:"]
[tool.ruff]
line-length = 100
exclude = ["tests", "scripts"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
[tool.mypy]
strict = true
exclude = ["tests/", "scripts/"]