23 lines
601 B
TOML
23 lines
601 B
TOML
[build-system]
|
|
requires = ["hatchling >= 1.26"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "solvertools"
|
|
version = "0.0.1"
|
|
authors = [
|
|
{ name="Matte23", email="matteo@underdesk.net" },
|
|
]
|
|
description = "A bunch of tools to integrate a solver with ctfcli"
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
license = "MIT"
|
|
license-files = ["LICEN[CS]E*"]
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.underdesk.net/Matte23/solvertools"
|
|
Issues = "https://git.underdesk.net/Matte23/solvertools/issues" |