-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
30 lines (26 loc) · 925 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-export-credentials"
version = "0.18.0" # Update here and aws_export_credentials.py
description = "Get AWS credentials from a profile to inject into other programs"
authors = ["Ben Kehoe <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/benkehoe/aws-export-credentials"
repository = "https://github.com/benkehoe/aws-export-credentials"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Utilities"
]
[tool.poetry.scripts]
aws-export-credentials = 'aws_export_credentials:main'
[tool.poetry.dependencies]
python = "^3.7"
boto3 = ">=1.14"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"