-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (54 loc) · 1.27 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (54 loc) · 1.27 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
[project]
name = "rpkiclientweb"
version = "0.16.1"
license = {text = "MIT"}
keywords = ["rpki", "rpki-client", "validator", "metrics", "prometheus"]
description = "A web api for RPKI-client"
authors = [{name = "Ties de Kock", email = "ties@tiesdekock.nl"}]
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License"
]
requires-python = ">=3.10"
dependencies = [
"aiohttp>=3.14.1",
"prometheus-async>=26.1.0",
"PyYAML>=6.0.3",
]
[project.urls]
repository = "https://github.com/ties/rpki-client-web"
[dependency-groups]
dev = [
"twine>=6.2.0",
"pytest>=9.1.1",
"pytest-cov>=7.1.0",
"ruff>=0.15.22",
"check-manifest>=0.51",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["rpkiclientweb"]
include = ["util/rsync_timeout"]
[tool.ruff]
target-version = "py310"
exclude = [
".mypy_cache",
".venv",
"build",
"dist",
]
[tool.ruff.lint]
ignore = ["E501"]
[tool.ruff.format]
# Use single quotes for strings
quote-style = "double"
# Respect existing line endings
line-ending = "auto"
[tool.pytest]
junit_family = "xunit2"
[settings]
# known_third_party = []