-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
56 lines (47 loc) · 1.33 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
55
56
[tool.poetry]
name = "lister"
version = "1.2.0"
description = "Lister. A tool for EC2 listing, filtering & detail fetching."
authors = ["Adrián Sanz"]
readme = "README.md"
homepage = "https://github.com/adsanz/lister"
keywords = ["aws", "ec2", "list", "filter"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: WTFPL License",
"Operating System :: Unix",
"Operating System :: MacOS ",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Topic :: Utilities"
]
[tool.poetry.scripts]
lister = "lister:main"
[tool.poetry.dependencies]
python = "3.10.*"
rich = "13.5.2"
pytest = "^7.1.3"
boto3-stubs = {extras = ["essential"], version = "^1.24.96"}
pre-commit = "^2.20.0"
black = "^22.10.0"
botocore = "^1.29.32"
mypy-boto3-ec2 = "^1.26.28"
boto3 = "^1.26.32"
faker = "18.10.1"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/adsanz/lister/issues"
[tool.poetry.group.dev.dependencies]
flake8 = "^5.0.4"
flake8-bugbear = "^22.9.23"
mypy = "^1.5"
coverage = {extras = ["toml"], version = "^6.5.0"}
nox = "^2022.8.7"
[tool.coverage.run]
omit = [".*", "*/site-packages/*"]
[tool.coverage.report]
fail_under = 70
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"