1
0
mirror of https://github.com/pruzko/hakuin synced 2024-09-19 02:41:35 +02:00
hakuin/pyproject.toml
2024-07-31 10:11:54 +02:00

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"