26 lines
556 B
TOML
26 lines
556 B
TOML
[build-system]
|
|
requires = ["setuptools>=64", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "mirage"
|
|
version = "0.1.0"
|
|
description = "Mirror management that's too good to be true."
|
|
authors = [{ name = "Aaron Gorodetzky", email = "aaron@nytegear.com" }]
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"typer>=0.12.0",
|
|
"flask>=3.0.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
mirage = "mirage.cli:app"
|
|
|
|
[tool.setuptools]
|
|
include-package-data = true
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["mirage*"]
|
|
exclude = ["systemd*", "scripts*"]
|