puild 0.1.2__tar.gz → 0.2.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: puild
3
- Version: 0.1.2
3
+ Version: 0.2.0
4
4
  Summary: A lightweight, modern build tool and command runner for Python.
5
5
  Requires-Dist: rich>=15.0.0
6
6
  Requires-Python: >=3.14
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "puild"
3
- version = "0.1.2"
3
+ version = "0.2.0"
4
4
  description = "A lightweight, modern build tool and command runner for Python."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.14"
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "puild"
3
- version = "0.1.2"
3
+ version = "0.2.0"
4
4
  description = "A lightweight, modern build tool and command runner for Python."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.14"
@@ -14,7 +14,6 @@ from puild.logging import (
14
14
  get_default_indent,
15
15
  log_action,
16
16
  log_indented,
17
- set_default_indent,
18
17
  )
19
18
 
20
19
  _DRY_RUN = False
@@ -137,7 +137,7 @@ def find_files(
137
137
  directory: str | Path = ".",
138
138
  pattern: str = "*",
139
139
  *,
140
- recursive: bool = True,
140
+ recursive: bool = False,
141
141
  ) -> list[Path]:
142
142
  """Find files matching pattern in directory."""
143
143
  dir_path = Path(directory)
File without changes
File without changes
File without changes