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

41 lines
783 B
INI

[build-system]
requires = [
"setuptools >= 67.6.0",
"wheel >= 0.38",
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["hakuin"]
[tool.setuptools.package-data]
hakuin = [
"data/models/*.pkl",
"data/queries/*.jinja",
]
[project]
name = "hakuin"
version = "0.1.4"
authors = [{ name = "Jakub Pruzinec", email = "j.pruzinec@gmail.com" }]
description = "Blind SQL Injection optimization and automation framework"
readme = "README.md"
requires-python = ">=3"
dependencies = [
"jinja2",
"nltk",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/pruzko/hakuin"