-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (57 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
66 lines (57 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
65
66
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "starlette-responses-kit"
dynamic = ["version"]
description = 'Extension containing custom responses for starlette.'
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
keywords = [
"python",
"starlette",
"starlette-extension",
"fastapi-extension",
]
authors = [
{ name = "WindowGenerator", email = "chudov42@gmail.com" },
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"starlette>=0.27.0",
"typing-extensions>=4.8.0",
# TODO: remove this pin after upgrading Starlette 0.31.1
"anyio>=3.7.1,<5.0.0",
]
[project.optional-dependencies]
tests = [
"coverage[toml]>=6.5",
"pytest-cov",
"pytest",
"httpx>=0.22.0",
"trio==0.24.0",
"mypy>=1.0.0",
]
[project.urls]
Documentation = "https://github.com/WindowGenerator/starlette-responses-kit#readme"
Issues = "https://github.com/WindowGenerator/starlette-responses-kit/issues"
Source = "https://github.com/WindowGenerator/starlette-responses-kit"
[tool.hatch.version]
path = "starlette_responses_kit/__init__.py"
[tool.hatch.envs.default.scripts]
test = "pytest {args:tests}"
check = "mypy --install-types --non-interactive {args:starlette_responses_kit}"
[[tool.hatch.envs.all.matrix]]
python = ["3.8", "3.9", "3.10", "3.11", "3.12"]
[publish.index.repos.main]
url = "https://upload.pypi.org/legacy/"
[publish.index.repos.test]
url = "https://test.pypi.org/legacy/"