-
Notifications
You must be signed in to change notification settings - Fork 38
/
setup.cfg
55 lines (48 loc) · 882 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
43
44
45
46
47
48
49
50
51
52
53
54
55
[metadata]
name = mailur
author = Grisha Kostyuk (aka naspeh)
version = 0.3.0
license = GPLv3
long_description = file: README.md
requires-python = >=3.6
[options]
include_package_data = True
packages = find:
install_requires=
bottle
chardet
gevent
gunicorn
itsdangerous
jsonschema
lxml
meinheld==0.6.1
mistune==0.8.4
pygments
python-dateutil
ujson
wsaccel
[options.extras_require]
test=
flake8
flake8-isort
#flake8-import-order
pytest
pytest-cov
pytest-xdist
webtest
[options.entry_points]
console_scripts=
mlr = mailur.cli:main
[tool:pytest]
addopts=-v --tb=short
testpaths=tests
markers =
no_parallel: flaky at parallel execution
[flake8]
exclude=env,var,.node_modules,.cache,.eggs
#import-order-style=smarkets
#import-order-style=cryptography
[isort]
skip=env,var
multi_line_output=5