27 lines
568 B
TOML
27 lines
568 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "flow"
|
|
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"]
|