-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.cfg
120 lines (109 loc) · 3.19 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
[metadata]
name = pladder
version = 1.0.0
author = Rasmus Bondesson and the contributors
author_email = [email protected]
description = An IRC bot
url = https://github.com/raek/pladder
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: POSIX :: Linux
[options]
packages = find_namespace:
include_package_data = True
python_requires = >=3.7
install_requires =
requests>=2 # azure and rest plugins
pydbus>=0.6.0 # connectors and bot (requires python3-gi apt package at runtime)
pymumble>=1.6.1 # mumble connector (requires libopus0 apt package at runtime)
flask # upgrade service and web connector
gunicorn # upgrade service and web connector
[options.package_data]
* = *.service
[options.extras_require]
test =
mypy
flake8
pytest
systemd =
systemd-python # connectors and bot (requires libsystemd-dev at install time)
[options.entry_points]
console_scripts =
pladder-bot = pladder.bot:main
pladder-cli = pladder.cli:main
pladder-irc = pladder.irc.main:main
pladder-mumble = pladder.mumble.main:main
pladder-web = pladder.web.main:main
pladder-upgrade = pladder.upgrade.main:main
pladder-systemd = pladder.systemd.main:main [systemd]
[flake8]
max_line_length = 120
[mypy]
warn_unused_configs = True
warn_redundant_casts = True
[mypy-pladder.script.types]
disallow_any_generics = True
disallow_subclassing_any = True
disallow_untyped_calls = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
check_untyped_defs = True
disallow_untyped_decorators = True
no_implicit_optional = True
warn_unused_ignores = True
warn_return_any = True
implicit_reexport = False
strict_equality = True
[mypy-pladder.script.parser]
disallow_any_generics = True
disallow_subclassing_any = True
disallow_untyped_calls = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
check_untyped_defs = True
disallow_untyped_decorators = True
no_implicit_optional = True
warn_unused_ignores = True
warn_return_any = True
implicit_reexport = False
strict_equality = True
[mypy-pladder.script.interpreter]
disallow_any_generics = True
disallow_subclassing_any = True
disallow_untyped_calls = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
check_untyped_defs = True
disallow_untyped_decorators = True
no_implicit_optional = True
warn_unused_ignores = True
warn_return_any = True
implicit_reexport = False
strict_equality = True
[mypy-pladder.plugins.alias]
disallow_any_generics = True
disallow_subclassing_any = True
disallow_untyped_calls = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
check_untyped_defs = True
disallow_untyped_decorators = True
no_implicit_optional = True
warn_unused_ignores = True
warn_return_any = True
implicit_reexport = False
strict_equality = True
[mypy-pladder.plugins.userdef]
disallow_any_generics = True
disallow_subclassing_any = True
disallow_untyped_calls = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
check_untyped_defs = True
disallow_untyped_decorators = True
no_implicit_optional = True
warn_unused_ignores = True
warn_return_any = True
implicit_reexport = False
strict_equality = True