-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
54 lines (48 loc) · 1.44 KB
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
47
48
49
50
51
52
53
54
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "cfengine"
dynamic = ["version"]
description = "Human-oriented CLI for interacting with CFEngine tools"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.10"
dependencies = [
"cf-remote>=0.7.3",
"cfbs>=5.5.0",
"tree-sitter-cfengine>=1.0.12",
"tree-sitter>=0.25",
"markdown-it-py>=3.0.0",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
"Topic :: Security",
"Topic :: Software Development :: Build Tools",
"Topic :: System :: Distributed Computing",
"Topic :: System :: Systems Administration",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
[project.scripts]
cfengine = "cfengine_cli.main:main"
[tool.setuptools]
license-files = [] # Workaround bug in setuptools https://github.com/astral-sh/uv/issues/9513
[tool.pyright]
include = ["src"]
venvPath = "."
venv = ".venv"
[tool.setuptools_scm]
[dependency-groups]
dev = [
"flake8>=7.1.2",
"pytest>=8.3.4",
]