-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
50 lines (44 loc) · 1.08 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
[build-system]
requires = ["hatchling >= 1.27"]
build-backend = "hatchling.build"
[project]
name = "pardner"
version = "0.0.1"
description = "Python library for authorizing access and fetching personal data from portability APIs and services"
readme = "README.md"
requires-python = ">=3.11,<3.14"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "Apache-2.0"
license-files = ["LICENSE"]
dependencies = [
"oauthlib>=3.3.1",
"pydantic>=2.11.7",
"requests-oauthlib>=2.0.0",
]
[dependency-groups]
dev = [
"mypy>=1.17.0",
"pytest>=8.4.1",
"pytest-cov>=6.2.1",
"pytest-mock>=3.14.1",
"ruff>=0.12.3",
"types-requests-oauthlib>=2.0.0.20250516",
]
[tool.mypy]
show_error_codes = true
warn_return_any = true
strict_optional = true
disallow_incomplete_defs = true
exclude = ["tests"]
plugins = ['pydantic.mypy']
[tool.ruff]
line-length = 88
[tool.ruff.format]
skip-magic-trailing-comma = true
quote-style = "single"
docstring-code-format = true
[tool.coverage.report]
exclude_also = ['@(abc\.)?abstractmethod']