-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.cfg
42 lines (36 loc) · 825 Bytes
/
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
[metadata]
name = heisenbridge
description = a bouncer-style Matrix IRC bridge
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/hifi/heisenbridge
author = Toni Spets (hifi)
author_email = [email protected]
license = MIT license
license_file = LICENSE
[options]
packages =
heisenbridge
install_requires =
irc >=19.0.0, <20.4
ruamel.yaml >=0.15.35, <0.18
mautrix >=0.15.0, <0.21
python-socks[asyncio] >= 1.2.4
aiohttp >=3.8.0, <4.0.0
python_requires = >=3.10
[options.entry_points]
console_scripts =
heisenbridge = heisenbridge.__main__:main
[options.extras_require]
dev =
mypy
flake8
black >= 22.3.0
reorder-python-imports
pre-commit
setuptools
test =
pytest
[flake8]
max-line-length = 132
extend-ignore = E203, E721