-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (58 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
64 lines (58 loc) · 1.66 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
[project]
name = "jentic-problem-details"
version = "1.0.1"
description = "RFC 9457 Problem Details models for Jentic APIs"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "Apache-2.0"}
license-files = ["LICENSE", "NOTICE"]
authors = [
{name = "Jentic", email = "hello@jentic.com"}
]
keywords = ["rfc9457", "problem-details", "fastapi", "pydantic", "openapi"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: FastAPI",
"Framework :: Pydantic",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"pydantic>=2.9.0",
]
[project.optional-dependencies]
fastapi = [
"fastapi>=0.100.0",
]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
"pytest-cov>=6.0.0",
"fastapi>=0.100.0",
"pyyaml>=6.0.0",
]
[project.urls]
Homepage = "https://github.com/jentic/api-problem-details"
Repository = "https://github.com/jentic/api-problem-details"
Documentation = "https://github.com/jentic/api-problem-details#readme"
Issues = "https://github.com/jentic/api-problem-details/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
exclude = [
"tests/",
]
[tool.hatch.build.targets.wheel]
packages = ["src/jentic"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_functions = "test_*"
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"