xenfra 0.1.2__tar.gz → 0.1.3__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: xenfra
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: A 'Zen Mode' infrastructure engine for Python developers.
5
5
  Author: xenfra-cloud
6
6
  Author-email: xenfra-cloud <xenfracloud@gmail.com>
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "xenfra"
3
- version = "0.1.2"
3
+ version = "0.1.3"
4
4
  description = "A 'Zen Mode' infrastructure engine for Python developers."
5
5
  readme = "README.md"
6
6
  authors = [
@@ -57,10 +57,11 @@ def generate_deployment_assets(context):
57
57
  # --- 1. DOCKERFILE ---
58
58
  if not os.path.exists("Dockerfile"):
59
59
  # Use UV if detected, otherwise Pip
60
- install_cmd = "RUN pip install --no-cache-dir -r requirements.txt"
61
60
  if context.get("type") == "uv":
62
- # Assuming uv.lock or pyproject.toml is copied
63
- install_cmd = "RUN pip install uv && uv pip install --system -r requirements.txt"
61
+ install_cmd = "RUN pip install uv && uv pip install --system ."
62
+ else:
63
+ # Modern pip can install from pyproject.toml directly
64
+ install_cmd = "RUN pip install ."
64
65
 
65
66
  dockerfile_content = f"""# Generated by Xenfra
66
67
  FROM python:3.11-slim
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes