-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.cfg
76 lines (68 loc) · 1.85 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
[metadata]
name = attrs_strict
description = Runtime validators for attrs
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/bloomberg/attrs-strict
author = Erik-Cristian Seulean
author_email = eseulean@bloomberg.net
license = Apache-2.0
license_files = LICENSE
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Software Development :: Libraries
Topic :: Software Development :: Testing
Topic :: Utilities
project_urls =
Source=https://github.com/bloomberg/attrs-strict
Tracker=https://github.com/bloomberg/attrs-strict/issues
Documentation=https://github.com/bloomberg/attrs-strict/blob/main/README.md#attrs-runtime-validation
[options]
packages = attrs_strict
install_requires =
attrs>=23.1
typing-extensions>=4.8;python_version < "3.8"
python_requires = >=3.8
package_dir =
=src
[options.packages.find]
where = src
[options.extras_require]
docs =
Sphinx>=7.2.6
test =
covdefaults>=2.3
pytest>=7.4.3
pytest-cov>=4.1
[options.package_data]
attrs_strict = py.typed
[coverage:run]
plugins = covdefaults
parallel = true
[coverage:paths]
src =
src
.tox/*/lib/python*/site-packages
.tox/pypy*/site-packages
.tox/pypy*/lib/pypy*/site-packages
.tox\*\Lib\site-packages\
*/src
*\src
other =
.
*/attrs-strict
*\attrs-strict
[coverage:report]
fail_under = 98
[coverage:html]
show_contexts = true
skip_covered = false