-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (76 loc) · 2 KB
/
pyproject.toml
File metadata and controls
86 lines (76 loc) · 2 KB
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
85
86
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.0"]
build-backend = "setuptools.build_meta"
[project]
name = "stsauth"
dynamic = ["version"]
authors = [{ name = "Scott Hamrick", email = "scott@scotthamrick.com" }]
description = "CLI tool for fetching AWS tokens."
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
# # This below format is for py3.9 and above
# license = "MIT"
# license-files = ["LICENSE"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
"Topic :: Utilities",
]
requires-python = ">=3.8"
dependencies = [
"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",
]
[dependency-groups]
dist = ["build", "twine"]
dev = ["ipython", "ipdb", "pylint"]
tests = ["tox", "mock", "nose", "flake8", "pytest", "coverage", "pytest-cov"]
[project.scripts]
stsauth = "sts_auth.cli:cli"
[project.urls]
Homepage = "https://github.com/cshamrick/stsauth"
Repository = "https://github.com/cshamrick/stsauth"
Issues = "https://github.com/cshamrick/stsauth/issues"
Changelog = "https://github.com/cshamrick/stsauth/blob/main/CHANGELOG.md"
[tool.black]
line-length = 120
[tool.mypy]
show_error_codes = true
[tool.setuptools.packages]
find = {}
[tool.setuptools_scm]
write_to = "sts_auth/_version.py"
[tool.tox]
requires = ["tox>=4"]
env_list = ["py38", "py39"]
skipsdist = true
[tool.tox.env_run_base]
description = "Run test under {base_python}"
deps = ["."]
dependency_groups = ["tests"]
commands = [
[
"coverage",
"run",
"-m",
"pytest",
"{posargs}",
],
[
"coverage",
"xml",
],
]