-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
62 lines (51 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[metadata]
name = aevent
description = Call synchronous Python from async code, without blocking
long_description = file: README.rst
author = Matthias Urlichs
author_email = [email protected]
project_urls =
Source code = https://github.com/M-o-a-T/aevent
Issue tracker = https://github.com/M-o-a-T/aevent/issues
license = MIT
classifiers =
Development Status :: 1 - Planning
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
[options]
package_dir=
= src
packages = find:
python_requires = >= 3.7.0
zip_safe = False
install_requires =
greenback
anyio >= 2
[options.packages.find]
where = src
[options.extras_require]
test =
pytest >= 4.3
pytest_trio
trio = trio >= 0.16
doc =
sphinx_rtd_theme
[options.entry_points]
pytest11 =
aevent = aevent.pytest_plugin
[tool:pytest]
addopts = -rsx --tb=short
testpaths = tests
filterwarnings = always
[coverage:run]
source = anyio
relative_files = true
[coverage:report]
show_missing = true
[flake8]
max-line-length = 99