-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (36 loc) · 860 Bytes
/
Copy pathpyproject.toml
File metadata and controls
43 lines (36 loc) · 860 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "helm-path"
dynamic = ["version"]
description = "Local-first CTF flight recorder and AI writeup generator"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "David", email = "your-email@example.com" }
]
dependencies = [
"typer[all]",
"docker",
"rich",
"python-dotenv",
"ollama",
"pypandoc"
]
[project.optional-dependencies]
dev = [
"pytest"
]
[project.scripts]
helm-path = "helm_path.main:app"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["helm_path*"]
[tool.setuptools.package-data]
"helm_path.prompts" = ["*.txt"]
"helm_path.graph.static" = ["*.html", "*.css", "*.js"]
[tool.setuptools.dynamic]
version = {attr = "helm_path.__version__"}