-
Notifications
You must be signed in to change notification settings - Fork 41
/
setup.cfg
40 lines (38 loc) · 1.01 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
[metadata]
name = asynctest
version = 0.13.0
url = https://github.com/Martiusweb/asynctest/
author = Martin Richard
author_email = [email protected]
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
Topic :: Software Development :: Testing
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
license = Apache 2
license_file = LICENSE
description = Enhance the standard unittest package with features for testing asyncio libraries
long_description = file: README.rst
keywords =
unittest
test
testing
asyncio
tulip
selectors
async
mock
[options]
packages = find:
python_requires = >=3.5
zip_safe = True
[pylama]
format = pylint
skip = */.tox/*,*/.env/*
linters = pylint,mccabe,pep8
ignore = F0401,C0111,E731