-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.cfg
75 lines (63 loc) · 1.49 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
71
72
73
74
75
[metadata]
name = ansq
version = 0.3.0
description = Written with native Asyncio NSQ package
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/list-family/ansq
author = LiST
author_email = [email protected]
license = MIT
license_files = LICENSE
classifiers =
Development Status :: 3 - Alpha
Environment :: Web Environment
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Topic :: Software Development
Topic :: Software Development :: Libraries
[options]
packages = find:
install_requires =
aiohttp>=1.0.0
attrs>=20.1
python_requires = >=3.8
include_package_data = True
[options.packages.find]
exclude = tests
[options.extras_require]
coverage =
pytest-cov
testing =
pytest
pytest-asyncio
[options.package_data]
ansq = py.typed
[coverage:run]
branch = True
source = .
[coverage:report]
include =
ansq/*
tests/*
[flake8]
max-line-length = 88
exclude = build/*, dist/*, ansq.egg-info/*, .tox/*, .venv/*, .git/*, .eggs/*
extend-ignore = E203
[isort]
profile = black
add_imports = from __future__ import annotations
[mypy]
ignore_missing_imports = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
disallow_untyped_calls = true
[mypy-tests.*]
disallow_untyped_defs = false
[mypy-examples.*]
ignore_errors = true
[tool:pytest]
asyncio_mode = auto