-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (26 loc) · 989 Bytes
/
pyproject.toml
File metadata and controls
28 lines (26 loc) · 989 Bytes
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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gitops-agent"
version = "1.0.0"
description = "A GitOps agent for managing software code and configs on non-k8s servers"
readme = "README.md"
requires-python = ">=3.6"
keywords = ["git", "gitops", "classical", "infrastructure", "on-premise", "servers"]
license = { text = "MIT" }
authors = [{ name = "RS Nikhil Krishna" }]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Development Status :: 3 - Alpha",
]
dependencies = ["gitpython", "toml"]
scripts = { "gitops-agent" = "gitops_agent.agent:main" }
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages]
find = {}