-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (40 loc) · 1.15 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
[tool.poetry]
name = "appconfig-cli"
version = "0.2.0"
description = "Unofficial CLI tool for working with AWS AppConfig"
packages = [{include = "appconf"}]
authors = ["Nick Snell <[email protected]>"]
license = "MIT"
readme = ["README.md", "CHANGELOG.md"]
repository = "https://github.com/nicksnell/appconfig-cli"
keywords = ["appconfig", "aws", "cli", "aws-appconfig", "appconfig-cli", "cli-tool"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = "^3.9"
boto3 = "^1.27.0"
click = "^8.1.3"
rich = "^13.4.2"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
ruff = "^0.0.277"
black = "^23.3.0"
pre-commit = "^3.3.3"
invoke = "2.2.0"
[tool.poetry.scripts]
appconf = "appconf.main:cli"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
lin-length = 90
[tool.ruff]
line-length = 90