-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpyproject.toml
66 lines (58 loc) · 1.85 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
57
58
59
60
61
62
63
64
65
66
# Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
[tool.poetry]
name = "aws-service-catalog-puppet"
version = "0.255.0"
description = "Making it easier to deploy ServiceCatalog products"
classifiers = ["Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Programming Language :: Python :: 3", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Natural Language :: English"]
homepage = "https://service-catalog-tools-workshop.com/"
readme = "README.md"
repository = "https://github.com/awslabs/aws-service-catalog-puppet-framework"
authors = ["Eamonn Faherty <[email protected]>"]
packages = [
{ include = "servicecatalog_puppet", from = "." },
]
include = ["servicecatalog_puppet"]
[tool.poetry.scripts]
servicecatalog-puppet = "servicecatalog_puppet.cli:cli"
[tool.poetry.urls]
issues = "https://github.com/awslabs/aws-service-catalog-puppet-framework/issues"
[tool.poetry.dev-dependencies]
codecov = "^2.1.7"
behave = "^1.2.6"
pylint = "^2.5.3"
black = "24.10.0"
pycodestyle = "^2.6.0"
nose2 = "^0.10.0"
[tool.poetry.group.dev.dependencies]
viztracer = "^0.15.4"
importanize = "^0.7.0"
codecov = "^2.1.13"
[tool.dephell.main]
versioning = "semver"
from = {format = "poetrylock", path = "poetry.lock"}
envs = ["main"]
to = {format = "poetry", path = "pyproject.toml"}
[tool.poetry.dependencies]
python = "^3.11"
requests = "2.32.3"
pyyaml = "6.0.1"
jinja2 = "3.1.4"
click = "8.1.7"
boto3 = "1.35.88"
better-boto = "0.42.0"
terminaltables = "==3.1.0"
luigi = "3.6.0"
cfn-flip = "==1.2.3"
networkx = "2.6.3"
troposphere = "4.8.3"
awacs = "2.0.2"
jmespath = "1.0.1"
deepdiff = "^5.3.0"
deepmerge = "^0.2.1"
yamale = "^3.0.8"
colorama = "^0.4.5"
orjson = "^3.8.0"
MarkupSafe = "2.0.1"
[tool.poetry.build]
generate-setup-file = true