forked from Mergifyio/mergify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
74 lines (67 loc) · 1.87 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
[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 = [email protected]
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.7
[options]
packages =
mergify_engine
include_package_data = true
install_requires =
attrs
daiquiri>=1.5
python-dotenv
flask
flask_cors
celery[redis]
setproctitle
cryptography
pygithub>=1.40,!=1.43.4,!=1.43.5,!=1.43.7
requests
redis
hiredis
pyyaml
voluptuous
sentry-sdk[flask]
ipython
tenacity
prometheus_client
pyparsing
idna<2.8
[options.extras_require]
test =
pytest
pytest-cov
vcrpy>=1.12.0
fixture
pifpaf
testtools
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-exporter = mergify_engine.prom_exporter:main
mergify-debug = mergify_engine.debug:main
mergify-stargazer = mergify_engine.debug:stargazer
mergify_actions =
backport = mergify_engine.actions.backport:BackportAction
label = mergify_engine.actions.label:LabelAction
delete_head_branch = mergify_engine.actions.delete_head_branch:DeleteHeadBranchAction
merge = mergify_engine.actions.merge:MergeAction
close = mergify_engine.actions.close:CloseAction
comment = mergify_engine.actions.comment:CommentAction
dismiss_reviews = mergify_engine.actions.dismiss_reviews:DismissReviewsAction
[build_wheel]
universal = 1