-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
41 lines (36 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/kaniko_wrapper"]
[project]
name = "kaniko-wrapper"
version = "1.1.1.1"
authors = [
{name = "EpicMorg", email = "[email protected]"}
]
maintainers = [
{name = "EpicMorg", email = "[email protected]"}
]
dependencies = [
"PyYAML",
"python-dotenv",
]
description = "EpicMorg: Kaniko-Compose Wrapper - CLI wrapper for Kaniko build system"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.6"
keywords = ["kaniko", "docker", "build"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix"
]
[project.scripts]
kaniko-wrapper = "kaniko_wrapper.kaniko_wrapper:main"
[project.urls]
Homepage = "https://github.com/EpicMorg/kaniko-wrapper"
Documentation = "https://github.com/EpicMorg/kaniko-wrapper/blob/master/README.md"
Repository = "https://github.com/EpicMorg/kaniko-wrapper.git"
"Bug Tracker" = "https://github.com/EpicMorg/kaniko-wrapper/issues"
Changelog = "https://github.com/EpicMorg/kaniko-wrapper/blob/master/CHANGELOG.md"