forked from Mergifyio/mergify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
91 lines (83 loc) · 2.52 KB
/
setup.cfg
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
[metadata]
name = mergify_engine
home-page = https://github.com/mergifyio/mergify
summary = mergify-engine is a Github App to manager PR
description-file = README.rst
author = Mehdi Abaakouk
author-email = sileht@sileht.net
classifier =
Intended Audience :: Information Technology
License :: OSI Approved :: Apache Software License
Operating System :: POSIX
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
[options]
packages =
mergify_engine
include_package_data = true
install_requires =
daiquiri>=2.0.0
datadog
python-dotenv
fastapi
python-multipart # fastapi extra
uvicorn[standard]
cryptography
aredis
redis!=3.4.1,!=3.4.0
hiredis
httpx[http2]>=0.14.0
pyyaml
voluptuous
sentry-sdk
tenacity
pyparsing
gunicorn[setproctitle]
honcho
pyjwt
cachetools
msgpack
jinja2
werkzeug
[options.extras_require]
test =
freezegun
pytest
pytest-cov
pytest-asyncio
pytest-httpserver
pygithub>=1.43.8
vcrpy>=4.1.1
pifpaf
docs =
sphinx
[options.entry_points]
console_scripts =
mergify-refresher = mergify_engine.web_cli:refresher
mergify-queues = mergify_engine.web_cli:queues
mergify-clear-token-cache = mergify_engine.web_cli:clear_token_cache
mergify-debug = mergify_engine.debug:main
mergify-worker-status = mergify_engine.worker:status
mergify-engine-worker = mergify_engine.worker:main
mergify_actions =
assign = mergify_engine.actions.assign:AssignAction
backport = mergify_engine.actions.backport:BackportAction
copy = mergify_engine.actions.copy:CopyAction
post_check = mergify_engine.actions.post_check:PostCheckAction
label = mergify_engine.actions.label:LabelAction
delete_head_branch = mergify_engine.actions.delete_head_branch:DeleteHeadBranchAction
merge = mergify_engine.actions.merge.action:MergeAction
close = mergify_engine.actions.close:CloseAction
comment = mergify_engine.actions.comment:CommentAction
review = mergify_engine.actions.review:ReviewAction
dismiss_reviews = mergify_engine.actions.dismiss_reviews:DismissReviewsAction
request_reviews = mergify_engine.actions.request_reviews:RequestReviewsAction
rebase = mergify_engine.actions.rebase:RebaseAction
update = mergify_engine.actions.update:UpdateAction
refresh = mergify_engine.actions.refresh:RefreshAction
[build_wheel]
universal = 1
[mypy]
ignore_missing_imports = true
files = mergify_engine/**/*.py