-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (44 loc) · 1.22 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
[project]
name = "fastapi-mock-middleware"
description = "FastAPI middleware for mocking response data of non-implemented endpoints"
authors = [
{ name = "Niyaz Batyrshin", email = "[email protected]" },
]
readme = "README.md"
license = { file = "LICENSE.txt" }
keywords = ["fastapi", "mock", "mock API", "mock fastapi", "mock response", "API first"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.8"
dynamic = ["version"]
dependencies = [
"fastapi>=0.103.0",
"polyfactory>=2.8.0",
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-asyncio",
"pytest-cov",
"flake8",
"httpx",
]
dev = [
"uvicorn",
"ipython",
]
[project.urls]
homepage = "https://NiyazNz.github.io/fastapi-mock-middleware"
repository = "https://github.com/NiyazNz/fastapi-mock-middleware.git"
issues = "https://github.com/NiyazNz/fastapi-mock-middleware/issues"
[tool.setuptools]
packages = ["fastapi_mock_middleware"]
[tool.setuptools_scm]
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=7.1.0"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
asyncio_mode = "auto"