-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
30 lines (27 loc) · 973 Bytes
/
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
[tool.poetry]
name = "aws-assume-role-lib"
version = "2.10.0" # update here and in aws_assume_role_lib.py
description = "Assumed role session chaining (with credential refreshing) for boto3"
authors = ["Ben Kehoe <ben@kehoe.io>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/benkehoe/aws-assume-role-lib"
repository = "https://github.com/benkehoe/aws-assume-role-lib"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries"
]
[tool.poetry.dependencies]
python = "^3.6"
boto3 = "^1.17.51" # for SourceIdentity
[tool.poetry.dev-dependencies]
pytest = "^6.1.2"
mypy = "^0.931"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"