-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
74 lines (67 loc) · 1.99 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
[metadata]
name = aiobotocore-refreshable-credentials
version = 1.0.4
description = Implements an aiobotocore.Session subclass for using aiobotocore with expiring credentials (IAM STS)
long_description = file: README.rst
long_description_content_type = text/x-rst; charset=UTF-8
license = BSD 3-Clause License
license_file = LICENSE
home_page = https://github.com/aweber/aiobotocore-refreshable-credentials/
requires_dist = setuptools
author = Gavin M. Roy
author_email = [email protected]
classifiers =
Development Status :: 5 - Production/Stable
Framework :: AsyncIO
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Communications
Topic :: Internet
Topic :: Software Development
Typing :: Typed
[options]
include_package_data = False
install_requires =
aiobotocore>=1.2.2,<3
python-dateutil>=2.8.1,<3
packages = aiobotocore_refreshable_credentials
zip_safe = true
[options.extras_require]
testing =
async_case;python_version<'3.8'
bandit==1.7.4
coverage==6.3.2
flake8==4.0.1
flake8-comprehensions==3.8.0
flake8-deprecated==1.3
flake8-import-order==0.18.1
flake8-quotes==3.3.1
flake8-rst-docstrings==0.2.5
flake8-todo==0.7
flake8-tuple==0.4.1
[flake8]
application-import-names = aiobotocore_refreshable_credentials,tests
exclude = build,ci,env
import-order-style = pycharm
rst-roles = attr,class,const,data,exc,func,meth,mod,obj
[coverage:run]
branch = True
command_line = -m unittest discover tests --verbose
data_file = build/.coverage
[coverage:report]
show_missing = True
include =
aiobotocore_refreshable_credentials/*
omit =
tests/*.py
[coverage:html]
directory = build/coverage
[coverage:xml]
output = build/coverage.xml