-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpyproject.toml
57 lines (49 loc) · 1.65 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
# Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
[tool.poetry]
name = "aws-service-catalog-factory"
version = "0.102.1"
description = "Making it easier to build 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-factory"
authors = ["Eamonn Faherty <[email protected]>"]
packages = [
{ include = "servicecatalog_factory", from = "." },
]
include = ["servicecatalog_factory"]
[tool.poetry.scripts]
servicecatalog-factory = "servicecatalog_factory.cli:cli"
[tool.poetry.urls]
issues = "https://github.com/awslabs/aws-service-catalog-factory-framework/issues"
[tool.poetry.dev-dependencies]
codecov = "==2.1.13"
pylint = "*"
black = "^19.10b0"
nose2 = "^0.10.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"
docutils = "==0.14"
jinja2 = "3.1.2"
click = "==7.0"
boto3 = "1.19.2"
cfn-flip = "==1.2.3"
terminaltables = "==3.1.0"
luigi = "3.3.0"
requests = "2.31.0"
colorclass = "2.2.2"
troposphere = "3.1.0"
PyYAML = "6.0.1"
better-boto = "0.43.0"
deepmerge = "^0.3.0"
yamale = "^3.0.8"
networkx = "2.6.3"
orjson = "^3.8.0"
[tool.poetry.build]
generate-setup-file = true