-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
54 lines (52 loc) · 1.09 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
[metadata]
name = stsauth
author = Scott Hamrick
author_email = scott@scotthamrick.com
description = CLI tool for fetching AWS tokens.
license = MIT
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/cshamrick/stsauth
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Operating System :: OS Independent
Topic :: Utilities
[options]
python_requires = >=3.6,<4.0
packages = find:
install_requires =
boto3 <2
beautifulsoup4 <5
Click >=8,<9
click-log <0.4
requests <3
requests_ntlm <2
lxml <5
pyotp <3
urllib3<1.30
importlib_metadata;python_version<'3.8'
backoff<2.3
[options.entry_points]
console_scripts =
stsauth=sts_auth.cli:cli
[options.extras_require]
dist =
build
twine
dev =
ipython
ipdb
pylint
tests =
tox
mock
nose
flake8
pytest
coverage
pytest-cov