-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 1.03 KB
/
Copy pathpyproject.toml
File metadata and controls
38 lines (32 loc) · 1.03 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "kautolog"
version = "1.1.14"
description = "Kali/Linux auto-logging of all terminal sessions using script(1), with optional tmux, logrotate, and rclone sync."
readme = "README.md"
requires-python = ">=3.8"
authors = [{name = "Mark Sowell", email = "mark@marksowell.com"}]
dependencies = ["typer>=0.12.0"]
keywords = ["kali", "linux", "logging", "terminal", "script", "tmux", "logrotate", "rclone"]
license = "MIT"
license-files = ["LICEN[CS]E*"]
[project.urls]
Homepage = "https://github.com/marksowell/kautolog"
Issues = "https://github.com/marksowell/kautolog/issues"
[project.scripts]
kautolog = "kautolog.cli:app"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-dir]
"" = "src"
[tool.setuptools.package-data]
"kautolog" = [
"templates/*.sh",
"templates/*.conf",
"templates/kautolog-replay",
"templates/logrotate_terminal-logs",
"templates/systemd/*.service",
"templates/systemd/*.timer"
]