forked from bloomberg/attrs-strict
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
56 lines (52 loc) · 1.75 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
[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 = [email protected]
license = Apache-2.0
license_file = 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 :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
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/master/README.md#attrs-runtime-validation
[options]
packages = attrs_strict
install_requires =
attrs>=19.1.0
funcsigs>=1.0.2;python_version<'3.5'
typing>=3.7.4.1;python_version<'3.5'
python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4
package_dir =
=src
tests_require =
mock;python_version<'3.3'
pytest >= 4
[options.package_data]
* = *.pyi
attrs_strict = py.typed
[options.packages.find]
where = src
[bdist_wheel]
universal = true