-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.cfg
84 lines (77 loc) · 1.81 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
76
77
78
79
80
81
82
83
84
[metadata]
name = aiocouch
version = 3.0.1
author = TU Dresden
description = 🛋 An asynchronous client library for CouchDB 2.x and 3.x
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/metricq/aiocouch
license = BSD 3-clause
license_file = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Topic :: Software Development :: Build Tools
Topic :: Database
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Typing :: Typed
project_urls =
Documentation = https://aiocouch.readthedocs.io/en/stable
Source = https://github.com/metricq/aiocouch
Bug Tracker = https://github.com/metricq/aiocouch/issues
[options]
packages =
aiocouch
python_requires = >= 3.7
include_package_data = True
setup_requires =
pytest-runner
install_requires =
aiohttp ~= 3.0
Deprecated
typing-extensions
[options.package_data]
aiocouch = py.typed
[options.extras_require]
examples =
aiomonitor
click
click-log
click-completion
tests =
pytest
pytest-asyncio>=0.17
pytest-cov
packaging
docs =
sphinx
sphinx-autodoc-typehints
sphinxcontrib-trio
sphinxcontrib-httpdomain
typing =
mypy >= 0.981
types-Deprecated
dev =
isort
black
%(tests)s
%(typing)s
%(docs)s
[aliases]
test=pytest
[tool:pytest]
addopts = --cov=aiocouch
[pycodestyle]
ignore = E203, E501, E503
max-line-length = 88
[flake8]
max-line-length = 80
select = C,E,F,W,B,B950,W504
ignore = E203, E501, W503