mirror of
https://github.com/pruzko/hakuin
synced 2024-11-08 13:59:15 +01:00
39 lines
941 B
INI
39 lines
941 B
INI
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
[project]
|
|
name = "hakuin"
|
|
version = "0.1.10"
|
|
description = "Blind SQL Injection optimization and automation framework"
|
|
authors = [{ name = "Jakub Pruzinec", email = "j.pruzinec@gmail.com" }]
|
|
readme = "README.md"
|
|
requires-python = ">=3"
|
|
dependencies = [
|
|
"aiohttp",
|
|
"jinja2",
|
|
"nltk",
|
|
"tqdm",
|
|
]
|
|
scripts = { hk = "hakuin.hk:main" }
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://github.com/pruzko/hakuin"
|
|
|
|
|
|
[tool.hatch.build]
|
|
include = ["models/*.pkl", "hakuin/**"]
|
|
|
|
|
|
[tool.hatch.build.force-include]
|
|
"hk.py" = "hakuin/hk.py"
|
|
"models/model_columns.pkl" = "hakuin/models/model_columns.pkl"
|
|
"models/model_tables.pkl" = "hakuin/models/model_tables.pkl"
|
|
"models/model_schemas.pkl" = "hakuin/models/model_schemas.pkl" |