forked from GoogleCloudPlatform/solutions-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (42 loc) · 1.12 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
[tool.poetry]
name = "solutions-builder"
version = "1.17.9"
description = "A solution framework to generate a project with built-in structure and modules"
authors = ["Jon Chen <jonchen@google.com>"]
license = "Apache"
readme = "README.md"
homepage = "https://github.com/GoogleCloudPlatform/solutions-builder"
repository = "https://github.com/GoogleCloudPlatform/solutions-builder"
packages = [
{ include = "solutions_builder" }
]
exclude = [
"**/node_modules/**/*",
"**/.terraform/**/*",
"**/.terraform/providers/**/*",
"**/.terraform.lock.hcl",
"**/__pycache__/**/*"
]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
copier = "^7.2.0"
pyyaml = "^6.0"
typer = "^0.9.0"
jinja2-time = "^0.2.0"
copier-templates-extensions = "^0.3.0"
pathlib = "^1.0.1"
jinja2 = "^3.1.2"
jinja2-strcase = "^0.0.2"
pydantic = "<=1.10.12"
[tool.poetry.group.dev.dependencies]
python = ">=3.8,<4.0"
copier-templates-extensions = "^0.3.0"
copier = "^7.2.0"
PyYAML = "^6.0"
jinja2-time = "^0.2.0"
typer = "^0.9.0"
[tool.poetry.scripts]
sb = "solutions_builder.cli.cli:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"