forked from myk-org/github-webhook-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (65 loc) · 1.88 KB
/
pyproject.toml
File metadata and controls
75 lines (65 loc) · 1.88 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
[tool.ruff]
preview = true
line-length = 120
fix = true
output-format = "grouped"
[tool.ruff.format]
exclude = [".git", ".venv", ".mypy_cache", ".tox", "__pycache__"]
[tool.mypy]
check_untyped_defs = true
disallow_any_generics = false
disallow_incomplete_defs = true
disallow_untyped_defs = true
no_implicit_optional = true
show_error_codes = true
warn_unused_ignores = true
[tool.poetry]
name = "github-webhook-server"
version = "0.0.0"
description = "A webhook server to manage Github reposotories and pull requests."
authors = [
"Meni Yakove <myakove@gmail.com>",
"Ruth Netser <ruth.netser@gmail.com>",
]
readme = "README.md"
license = "Apache-2.0"
homepage = "https://github.com/myakove/github-webhook-server"
repository = "https://github.com/myakove/github-webhook-server"
packages = [{ include = "webhook_server_container" }]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[tool.poetry.urls]
Download = "https://quay.io/repository/myakove/github-webhook-server"
"Bug Tracker" = "https://github.com/myakove/github-webhook-server/issues"
[tool.poetry.dependencies]
python = "^3.8"
poetry-dynamic-versioning = { extras = ["plugin"], version = "^1.0.0" }
pygithub = "^2.0.0"
pyyaml = "^6.0"
build = "^1.0.0"
shortuuid = "^1.0.11"
colorlog = "^6.7.0"
colorama = "^0.4.6"
ruff = "^0.6.0"
timeout-sampler = "^0.0.42"
requests = "^2.31.0"
jira = "^3.8.0"
pyhelper-utils = "^0.0.37"
uwsgi = "^2.0.26"
fastapi = "^0.112.0"
python-simple-logger = "^1.0.30"
uvicorn = "^0.30.1"
string-color = "^1.2.3"
[tool.poetry.group.dev.dependencies]
ipdb = "^0.13.13"
ipython = "*"
[tool.poetry-dynamic-versioning]
enable = true
pattern = "((?P<epoch>\\d+)!)?(?P<base>\\d+(\\.\\d+)*)"
[tool.poetry-dynamic-versioning.substitution]
files = ["VERSION"]
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"