forked from Mergifyio/mergify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
107 lines (99 loc) · 3.08 KB
/
setup.cfg
File metadata and controls
107 lines (99 loc) · 3.08 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
[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.9
[options]
packages =
mergify_engine
mergify_engine_signals.noop
include_package_data = true
install_requires =
daiquiri>=3
datadog
python-dotenv
fastapi
python-multipart # fastapi extra
aiofiles
uvicorn[standard]
cryptography
aredis
hiredis
httpx[http2]>=0.14.0
pyyaml
voluptuous
sentry-sdk
first
tenacity
pyparsing
gunicorn[setproctitle]
honcho
pyjwt
cachetools
msgpack
jinja2
werkzeug
aredis @ git+http://github.com/sileht/aredis.git@prod-mergify
[options.extras_require]
test =
freezegun
pytest
pytest-cov
pytest-asyncio
pytest-httpserver
vcrpy>=4.1.1
docs =
sphinx
sphinxcontrib-spelling
[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-reschedule = mergify_engine.worker:reschedule_now
mergify-engine-worker = mergify_engine.worker:main
mergify-import-check = mergify_engine.import_check: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:MergeAction
queue = mergify_engine.actions.queue:QueueAction
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
disallow_incomplete_defs = true
warn_unused_ignores = true
warn_unused_configs = true
disallow_any_generics = true
warn_return_any = true
files = mergify_engine,mergify_engine_signals
disallow_subclassing_any = true
warn_redundant_casts = true
strict_equality = true
no_implicit_optional = true
disallow_untyped_decorators = true
show_error_codes = true