This commit is contained in:
2026-02-13 02:13:27 +02:00
parent 906adb539d
commit e35f9651c1
78 changed files with 200 additions and 108 deletions

View File

@@ -4,16 +4,23 @@ build-backend = "hatchling.build"
[project]
name = "flow"
version = "0.1.0"
dynamic = ["version"]
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"]
dev = ["pytest>=7.0"]
[project.scripts]
flow = "flow.cli:main"
[tool.hatch.version]
path = "src/flow/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/flow"]
[tool.pytest.ini_options]
testpaths = ["tests"]