20 lines
441 B
TOML
20 lines
441 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "flow"
|
|
version = "0.1.0"
|
|
description = "DevFlow - A unified toolkit for managing development instances, containers, and profiles"
|
|
requires-python = ">=3.9"
|
|
dependencies = ["pyyaml>=6.0"]
|
|
|
|
[project.optional-dependencies]
|
|
build = ["pyinstaller>=6.0"]
|
|
|
|
[project.scripts]
|
|
flow = "flow.cli:main"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/flow"]
|