-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
67 lines (61 loc) · 1.6 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
60
61
62
63
64
65
66
67
[project]
name = "hawk-debug"
dynamic = ["version"]
description = "A dubugging & profiling toolkit for production Python microservices"
authors = [
{name = "Roman Glushko", email = "roman.glushko.m@gmail.com"},
]
dependencies = []
requires-python = ">=3.9"
readme = "README.md"
license = {text = "MIT"}
[project.optional-dependencies]
pyinstrument = [
"pyinstrument>=4.7.2",
]
zpages = [
"jinja2>=3.1.4",
]
docs = [
"mkdocs>=1.6.1",
"mkdocs-material>=9.5.34",
"mdx-include>=1.4.2",
"mkautodoc>=0.2.0",
"mkdocs-pymdownx-material-extras>=2.5.6",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.version]
source = "scm"
fallback_version = "0.0.0"
write_to = "hawk/version.py"
write_template = """
# Copyright (c) 2024 Roman Hlushko and various contributors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
__version__ = '{}'
"""
[tool.pdm.dev-dependencies]
dev = [
"ruff>=0.5.5",
"mypy>=1.11.0",
"fastapi>=0.111.1",
"starlette>=0.37.2",
"flask>=3.0.3",
"pytest>=8.3.2",
"coverage>=7.6.1",
"pytest-cov>=5.0.0",
]