-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 1.11 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "trace-forensics"
version = "0.1.3"
description = "TRACE: Trajectory Analysis for Conversational Evidence"
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
authors = [
{name = "Dylan D. Mobley"}
]
dependencies = []
keywords = ["digital-forensics", "evidence", "ai-forensics", "conversational-forensics", "trace"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Information Technology",
"Intended Audience :: Legal Industry",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[project.urls]
Homepage = "https://github.com/empathyethicist/trace"
Repository = "https://github.com/empathyethicist/trace"
Issues = "https://github.com/empathyethicist/trace/issues"
[project.scripts]
trace = "trace_forensics.cli:run_cli"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]