-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
42 lines (37 loc) · 1004 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
[metadata]
name = traio
description = A simple asyncio wrapper attempting to look like Trio
url = https://github.com/RouquinBlanc/traio/
author = Jonathan Martin
author_email = [email protected]
long_description = file: README.md
long_description_content_type = text/markdown
keywords = asyncio, nursery, trio, even loop
license = MIT
Requires-Python: >=3.5
classifiers =
Development Status :: 4 - Beta
Operating System :: OS Independent
Intended Audience :: Developers
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
[options]
zip_safe = False
include_package_data = True
packages = find:
install_requires =
typing; python_version<"3.6"
aiocontextvars~=0.2
[mypy]
ignore_missing_imports=1
follow_imports=silent
[flake8]
max-line-length = 100
exclude = doc/*,build/*,.tox,.eggs
max-complexity = 7
[pylint]
[tool:pytest]
addopts = -rsxX -q
testpaths = tests