1
0
mirror of https://github.com/pruzko/hakuin synced 2024-10-18 09:48:06 +02:00
hakuin/pyproject.toml

39 lines
941 B
INI
Raw Normal View History

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "hakuin"
2024-07-31 10:11:54 +02:00
version = "0.1.10"
2023-09-05 11:06:11 +02:00
description = "Blind SQL Injection optimization and automation framework"
authors = [{ name = "Jakub Pruzinec", email = "j.pruzinec@gmail.com" }]
2023-09-05 11:06:11 +02:00
readme = "README.md"
requires-python = ">=3"
dependencies = [
2024-01-07 17:02:42 +01:00
"aiohttp",
"jinja2",
"nltk",
2024-07-25 18:09:57 +02:00
"tqdm",
]
scripts = { hk = "hakuin.hk:main" }
2023-09-05 11:06:11 +02:00
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
2023-09-05 11:06:11 +02:00
[project.urls]
"Homepage" = "https://github.com/pruzko/hakuin"
[tool.hatch.build]
include = ["models/*.pkl", "hakuin/**"]
2024-07-25 19:38:25 +02:00
[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"