-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
66 lines (58 loc) · 1.45 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
[metadata]
name = asphalt-wamp
description = WAMP client component for the Asphalt framework
long_description = file: README.rst
author = Alex Grönholm
author_email = [email protected]
url = https://github.com/asphalt-framework/asphalt-wamp
license = Apache License 2.0
license_file = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Web Environment
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Topic :: Communications
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
[options]
packages = asphalt.wamp
install_requires =
asphalt ~= 4.0
asphalt-exceptions ~= 1.0
asphalt-serialization ~= 4.0
async-timeout >= 1.2
autobahn >= 17.5.1
typeguard ~= 2.0
[options.extras_require]
test =
cbor2
msgpack-python
pytest
pytest-cov
pytest-asyncio >= 0.5.0
doc =
Sphinx >= 1.5
sphinx_rtd_theme
sphinx-autodoc-typehints >= 1.2.0
sphinxcontrib-asyncio >= 0.2.0
[options.entry_points]
asphalt.components =
wamp = asphalt.wamp.component:WAMPComponent
[build_sphinx]
source-dir = docs
build-dir = docs/_build
[tool:pytest]
addopts = -rsx --cov --tb=short
testpaths = tests
[coverage:run]
source = asphalt.wamp
branch = 1
[coverage:report]
show_missing = true
[flake8]
max-line-length = 99
exclude = .tox,docs
ignore = E251