Skip to content

Commit a39919a

Browse files
authored
Create pyproject.toml
1 parent 71a0a23 commit a39919a

File tree

1 file changed

+55
-0
lines changed

1 file changed

+55
-0
lines changed

pyproject.toml

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
[build-system]
2+
requires = ["hatchling>=1.25"]
3+
build-backend = "hatchling.build"
4+
5+
[project]
6+
name = "goeyewitnesscategorizer"
7+
version = "0.1.0"
8+
description = "Parse GoWitness SQLite results and categorize HTML using EyeWitness-style signatures to produce a CSV report."
9+
readme = "README.md"
10+
requires-python = ">=3.8"
11+
authors = [
12+
{ name = "Defensive Origins", email = "[email protected]" },
13+
]
14+
keywords = [
15+
"security",
16+
"reconnaissance",
17+
"gowitness",
18+
"eyewitness",
19+
"categorization",
20+
"web",
21+
]
22+
classifiers = [
23+
"Programming Language :: Python :: 3",
24+
"Programming Language :: Python :: 3 :: Only",
25+
"Programming Language :: Python :: 3.8",
26+
"Programming Language :: Python :: 3.9",
27+
"Programming Language :: Python :: 3.10",
28+
"Programming Language :: Python :: 3.11",
29+
"Programming Language :: Python :: 3.12",
30+
"Intended Audience :: Information Technology",
31+
"Intended Audience :: System Administrators",
32+
"Topic :: Security",
33+
"Topic :: Internet :: WWW/HTTP",
34+
"Environment :: Console",
35+
"License :: OSI Approved :: MIT License",
36+
]
37+
38+
dependencies = [
39+
"pandas>=1.0",
40+
]
41+
42+
[project.scripts]
43+
goeyewitnesscategorizer = "goeyewitnesscategorizer:main"
44+
45+
[project.urls]
46+
Homepage = "https://github.com/DefensiveOrigins/goeyewitnesscategorizer"
47+
Source = "https://github.com/DefensiveOrigins/goeyewitnesscategorizer"
48+
"Issues" = "https://github.com/DefensiveOrigins/goeyewitnesscategorizer/issues"
49+
50+
[tool.hatch.build]
51+
# Single-module layout: explicitly ship this file.
52+
include = [
53+
"goeyewitnesscategorizer.py",
54+
"README.md",
55+
]

0 commit comments

Comments
 (0)