-
Notifications
You must be signed in to change notification settings - Fork 101
/
pyproject.toml
54 lines (49 loc) · 1.48 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool]
[tool.poetry]
name = "aws-adfs"
version = "2.11.3a0"
description = "AWS CLI authenticator via ADFS - small command-line tool to authenticate via ADFS and assume chosen role"
keywords = ["aws", "adfs", "console", "tool"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Python Software Foundation License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
]
authors = ["Venth <[email protected]>"]
readme = "README.md"
[tool.poetry.scripts]
aws-adfs = "aws_adfs.commands:cli"
[tool.poetry.dependencies]
python = "^3.7"
boto3 = "^1.24"
botocore = "^1.23"
click = "^8.0"
configparser = "5.3.0"
fido2 = "^1.0"
lxml = ">=4.9,<6.0"
requests = "^2.27"
requests-kerberos = [
{ version = "^0.14", markers = "platform_system != 'Windows'" },
]
requests-negotiate-sspi = [
{ version = "^0.5", markers = "platform_system == 'Windows'" },
]
[tool.poetry.group.dev.dependencies]
black = ">=22.12,<24.0"
coverage = ">=6.5,<8.0"
pre-commit = "^2.20.0"
pytest = "^7.2"
toml = "^0.10"
[tool.black]
line-length = 130 # black's default is 88
target-version = ['py310']