forked from aio-libs/pytest-aiohttp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
70 lines (56 loc) · 1.43 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
67
68
69
70
[metadata]
name = pytest-aiohttp
version = attr: pytest_aiohttp.__version__
url = https://github.com/aio-libs/pytest-aiohttp
project_urls =
GitHub = https://github.com/aio-libs/pytest-aiohttp
description = Pytest plugin for aiohttp support
long_description = file: README.rst
long_description_content_type = text/x-rst
maintainer = aiohttp team <[email protected]>
maintainer_email = [email protected]
license = Apache 2.0
license_file = LICENSE
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Software Development :: Testing
Framework :: AsyncIO
Framework :: Pytest
Framework :: aiohttp
Typing :: Typed
[options]
python_requires = >=3.7
packages = find:
include_package_data = True
setup_requires =
setuptools_scm >= 6.2
install_requires =
pytest >= 6.1.0
aiohttp >= 3.8.1
pytest-asyncio >= 0.17.2
[options.extras_require]
testing =
coverage == 6.2
mypy == 0.931
[options.entry_points]
pytest11 =
aiohttp = pytest_aiohttp.plugin
[coverage:run]
source = pytest_aiohttp
branch = true
[coverage:report]
show_missing = true
[tool:pytest]
addopts = -rsx --tb=short
testpaths = tests
asyncio_mode = auto
junit_family=xunit2
filterwarnings = error
[flake8]
max-line-length = 88