-
Notifications
You must be signed in to change notification settings - Fork 19
/
pyproject.toml
45 lines (41 loc) · 1.14 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
[tool.poetry]
name = "solutions-builder"
version = "2.0.0"
description = "A solution framework to generate a project with built-in structure and modules"
authors = ["Jon Chen <[email protected]>"]
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.9,<4.0"
copier = ">=9.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 = ">=2"
gitpython = "^3.1.43"
[tool.poetry.group.dev.dependencies]
python = ">=3.9,<4.0"
copier-templates-extensions = "^0.3.0"
copier = ">=9.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"