-
Notifications
You must be signed in to change notification settings - Fork 25
/
pyproject.toml
59 lines (53 loc) · 1.68 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "awscli-login"
dynamic = ["version"]
dependencies = [
"botocore",
"keyring",
"lxml",
"requests",
]
description = "Plugin for the AWS CLI that retrieves and rotates credentials using SAML ECP and STS."
authors = [
{name = "David D. Riddle", email = "ddriddle@illinois.edu"},
]
readme = "docs/readme.rst"
license = {text = "MIT License"}
keywords = [ "Amazon", "AWS", "SAML", "login", "access", "keys" ]
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
requires-python = ">=3.8"
[project.urls]
Homepage = "https://github.com/techservicesillinois/awscli-login"
"Bug Reports" = "https://github.com/techservicesillinois/awscli-login/issues"
Source = "https://github.com/techservicesillinois/awscli-login"
Changelog = "https://github.com/techservicesillinois/awscli-login/blob/master/CHANGELOG.rst"
[project.optional-dependencies]
test = [
"awscli",
"tblib",
"wurlitzer",
"vcrpy",
]
[project.scripts]
aws-login = "awscli_login.credentials:main"
[tool.setuptools_scm]
version_file = "src/awscli_login/_version.py"
local_scheme = "dirty-tag"
[tool.setuptools.packages.find]
where = ["src"]
include = ["awscli_login*"]