-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (49 loc) · 1.55 KB
/
pyproject.toml
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
[project]
name = "ezrest"
dynamic = ["version"]
requires-python = ">=3.8"
description = "Modular Python framework for implementing REST API clients"
readme = {file = "docs/README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
authors = [{name = "Jacek Lewański"}]
keywords = ["rest", "api", "client", "framework", "ezrest"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
"Typing :: Typed"
]
[project.urls]
Homepage = "https://github.com/nullJaX/ezrest"
Documentation = "https://nullJaX.github.io/ezrest"
Issues = "https://github.com/nullJaX/ezrest/issues"
"Release notes" = "https://github.com/nullJaX/ezrest/releases"
[project.optional-dependencies]
dev = ["build", "httpx", "mypy", "pytest", "pytest-asyncio", "pytest-cov", "ruff", "twine"]
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools >= 61.0"]
[tool.setuptools]
packages = ["ezrest"]
[tool.setuptools.dynamic]
version = {attr = "ezrest.__version__"}
[tool.coverage.report]
exclude_also = ["pass"]
fail_under = 90
show_missing = true
skip_covered = true
skip_empty = true
[tool.coverage.run]
branch = true
data_file = "build/.coverage"
omit = ["*/__init__.py"]
[tool.pytest.ini_options]
addopts = "--cov=ezrest --cov-report=term"
testpaths = ["tests"]
[tool.ruff]
required-version = ">=0.3.5"
[tool.ruff.format]
skip-magic-trailing-comma = true