-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (43 loc) · 1.21 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
[tool.poetry]
name = "lucyna"
version = "0.11.2"
description = "Lucyna is a library that tries to help you with your daily tasks with AWS ECS and AWS Lambda (more might come in future)."
authors = ["Daniel Ancuta <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/whisller/lucyna"
repository = "https://github.com/whisller/lucyna"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
]
keywords = ["aws", "ecs", "cli", "lambda"]
[tool.poetry.dependencies]
python = "^3.8"
click = "^8.0"
boto3 = "^1.18"
rich = "^12.5"
click-log = "^0.4"
loguru = "^0.6"
arrow = "^1.2"
asciiplot = "^0.1"
[tool.poetry.dev-dependencies]
black = "^22"
bump2version = "^1.0"
isort = "^5"
[tool.poetry.scripts]
lucyna = "lucyna.cli:safe_cli"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.black]
line-length = 120
[tool.isort]
line_length = 120