-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (26 loc) · 851 Bytes
/
pyproject.toml
File metadata and controls
32 lines (26 loc) · 851 Bytes
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
[tool.poetry]
name = "aws-coco"
version = "0.1.7"
description = "A utility for managing AWS Console Sessions with Firefox Containers"
authors = ["Joe Snell <joepsnell@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/wulfmann/aws-coco"
documentation = "https://github.com/wulfmann/aws-coco/README.md"
repository = "https://github.com/wulfmann/aws-coco"
keywords = ["aws", "firefox containers", "aws console", "console container"]
[tool.poetry.dependencies]
python = "^3.8"
boto3 = "^1.15.10"
requests = "^2.24.0"
[tool.poetry.dev-dependencies]
pytest = "^6.1.0"
black = "^20.8b1"
[tool.poetry.scripts]
coco = "aws_coco.main:run"
aws-coco = "aws_coco.main:run"
[tool.poetry.urls]
issues = "https://github.com/wulfmann/aws-coco/issues"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"