forked from awslabs/aws-service-catalog-puppet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (49 loc) · 1.67 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
# 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.98.1"
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 <aws-service-catalog-tools@amazon.com>"]
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]
pytest = ">=5.3.2"
pytest-cov = "^2.10.0"
codecov = "^2.1.7"
pytest-mock = "^3.1.1"
pytest-datadir = "^1.3.1"
behave = "^1.2.6"
pylint = "^2.5.3"
black = "^19.10b0"
pycodestyle = "^2.6.0"
[tool.dephell.main]
versioning = "semver"
from = {format = "poetrylock", path = "poetry.lock"}
envs = ["main"]
to = {format = "poetry", path = "pyproject.toml"}
[tool.poetry.dependencies]
python = ">=3.7,<4"
requests = "==2.22.0"
pyyaml = "==5.1"
jinja2 = "==2.10.1"
click = "==7.0"
boto3 = "1.16.56"
pykwalify = "==1.7.0"
better-boto = "0.35.0"
terminaltables = "==3.1.0"
colorclass = "==2.2.0"
luigi = "3.0.2"
psutil = "==5.7.0"
cfn-flip = "==1.2.3"
networkx = "^2.5"