-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
47 lines (41 loc) · 1.21 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
[metadata]
name = aiohttp-mock
version = 0.0.1
summary = Python3 AsyncIO's aiohttp mock framework
description-file =
README.rst
license = Apache-2
author = Benjamen R. Meyer
author-email = [email protected]
maintainer = Rackspace
maintainer-email = [email protected]
home-page = https://github.com/BenjamenMeyer/aiohttp-mock
classifier =
Development Status :: 4 - Beta
Environment :: OpenStack
Intended Audience :: Information Technology
Intended Audience :: System Administrators
License :: OSI Approved :: Apache Software License
Operating System :: POSIX :: Linux
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
[files]
packages =
aiohttp_mock
[nosetests]
where=tests
verbosity=2
with-doctest = true
cover-package = aiohttp_mock
cover-html = true
cover-erase = true
cover-inclusive = true
; Disabled: Causes a bug in testtools to manifest.
; Trigger: self.assertX(condition), where condition == False.
;
; In "testtools/testresult/real.py" the traceback is set to
; None in _details_to_exc_info(), but the inspect_traceback()
; method in nose/inspector.py requires a traceback-like object.
;
; detailed-errors = 1