-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
44 lines (38 loc) · 1.02 KB
/
setup.cfg
File metadata and controls
44 lines (38 loc) · 1.02 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
[metadata]
name = synapse_poll_module
description = "Synapse module to create polls"
url = https://github.com/Supereuro/SynapsePollModule/
long_description = "See Homepage"
version = 0.0.1
classifiers=
Development Status :: 3 - Alpha
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3 :: Only
[options]
packages = synapse_poll_module
python_requires = >=3.6
install_requires =
attrs
twisted
[options.extras_require]
dev =
# for tests
matrix-synapse
tox
twisted
aiounittest
# for type checking
mypy == 0.910
# for linting
black == 21.9b0
flake8 == 4.0.1
isort == 5.9.3
[flake8]
# see https://pycodestyle.readthedocs.io/en/latest/intro.html#error-codes
# for error codes. The ones we ignore are:
# W503: line break before binary operator
# W504: line break after binary operator
# E203: whitespace before ':' (which is contrary to pep8?)
# E501: Line too long (black enforces this for us)
# (this is a subset of those ignored in Synapse)
ignore=W503,W504,E203,E501