-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
111 lines (96 loc) · 2.55 KB
/
pyproject.toml
File metadata and controls
111 lines (96 loc) · 2.55 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
[tool.coverage.run]
omit = ["webhook_server/tests/*"]
[tool.coverage.report]
fail_under = 90
skip_empty = true
[tool.coverage.html]
directory = ".tests_coverage"
[tool.ruff]
preview = true
line-length = 120
fix = true
output-format = "grouped"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "B", "UP", "PLC0415", "ARG", "RUF059"]
[tool.ruff.lint.per-file-ignores]
"webhook_server/tests/*" = ["ARG"]
[tool.ruff.format]
exclude = [".git", ".venv", ".mypy_cache", ".tox", "__pycache__"]
[tool.mypy]
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
no_implicit_optional = true
show_error_codes = true
warn_unused_ignores = true
strict_equality = true
extra_checks = true
warn_unused_configs = true
warn_redundant_casts = true
[tool.hatch.build.targets.wheel]
packages = ["webhook_server"]
[project]
name = "github-webhook-server"
version = "4.0.1"
requires-python = "==3.13.*"
description = "A webhook server to manage Github repositories and pull requests."
readme = "README.md"
license = "Apache-2.0"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"aiofiles>=24.1.0",
"build>=1.2.2.post1",
"colorama>=0.4.6",
"colorlog>=6.8.2",
"fastapi>=0.115.0",
"pygithub>=2.4.0",
"pyhelper-utils>=0.0.42",
"pytest-cov>=6.0.0",
"pytest-mock>=3.14.0",
"pytest>=8.3.3",
"python-simple-logger>=1.0.40",
"pyyaml>=6.0.2",
"requests>=2.32.3",
"ruff>=0.6.9",
"shortuuid>=1.0.13",
"string-color>=1.2.3",
"timeout-sampler>=0.0.46",
"uvicorn[standard]>=0.32.0",
"httpx>=0.28.1",
"asyncstdlib>=3.13.1",
"webcolors>=24.11.1",
"pyjwt>=2.8.0",
"pydantic>=2.8.0",
"psutil>=7.0.0",
"fastapi-mcp>=0.4.0",
"ai-cli-runner>=0.1.0",
]
[[project.authors]]
name = "Meni Yakove"
email = " myakove@gmail.com"
[[project.authors]]
name = "Ruth Netser"
email = "ruth.netser@gmail.com"
[project.urls]
homepage = "https://github.com/myakove/github-webhook-server"
repository = "https://github.com/myakove/github-webhook-server"
"Bug Tracker" = "https://github.com/myakove/github-webhook-server/issues"
[project.optional-dependencies]
tests = ["pytest-asyncio>=0.26.0", "pytest-xdist>=3.7.0"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"ipdb>=0.13.13",
"ipython>=8.12.3",
"types-aiofiles>=25.1.0.20251011",
"types-colorama>=0.4.15.20240311",
"types-pyyaml>=6.0.12.20250516",
"types-requests>=2.32.4.20250611",
]
tests = ["psutil>=7.0.0", "pytest-asyncio>=0.26.0", "pytest-xdist>=3.7.0"]