-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
37 lines (32 loc) · 914 Bytes
/
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
[build-system]
requires = [
"setuptools>=61.0",
"setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "make-argocd-fly"
description = "A tool to generate Kubernetes manifests from templates"
license = {text = "GPLv3+"}
authors = [
{name = "Andrei Lapin", email = "[email protected]"},
]
requires-python = ">=3.11"
keywords = ["argocd", "kustomize", "jinja2"]
classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
dynamic = [
"readme",
"dependencies",
"version"
]
urls."Source Code" = "https://github.com/Karandash8/make-argocd-fly"
[project.scripts]
make-argocd-fly = "make_argocd_fly.main:cli_entry_point"
[tool.setuptools_scm]
[tool.setuptools.packages]
find = {}
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
dependencies = {file = ["requirements.txt"]}