bdh-linux 1.0.2__tar.gz → 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.
- {bdh_linux-1.0.2 → bdh_linux-2.0}/PKG-INFO +1 -1
- {bdh_linux-1.0.2 → bdh_linux-2.0}/bdh_linux/commands/install.py +4 -4
- {bdh_linux-1.0.2 → bdh_linux-2.0}/bdh_linux.egg-info/PKG-INFO +1 -1
- {bdh_linux-1.0.2 → bdh_linux-2.0}/pyproject.toml +2 -2
- {bdh_linux-1.0.2 → bdh_linux-2.0}/bdh_linux/__init__.py +0 -0
- {bdh_linux-1.0.2 → bdh_linux-2.0}/bdh_linux/commands/remove.py +0 -0
- {bdh_linux-1.0.2 → bdh_linux-2.0}/bdh_linux/commands/setup.py +0 -0
- {bdh_linux-1.0.2 → bdh_linux-2.0}/bdh_linux/main.py +0 -0
- {bdh_linux-1.0.2 → bdh_linux-2.0}/bdh_linux.egg-info/SOURCES.txt +0 -0
- {bdh_linux-1.0.2 → bdh_linux-2.0}/bdh_linux.egg-info/dependency_links.txt +0 -0
- {bdh_linux-1.0.2 → bdh_linux-2.0}/bdh_linux.egg-info/entry_points.txt +0 -0
- {bdh_linux-1.0.2 → bdh_linux-2.0}/bdh_linux.egg-info/requires.txt +0 -0
- {bdh_linux-1.0.2 → bdh_linux-2.0}/bdh_linux.egg-info/top_level.txt +0 -0
- {bdh_linux-1.0.2 → bdh_linux-2.0}/setup.cfg +0 -0
- {bdh_linux-1.0.2 → bdh_linux-2.0}/setup.py +0 -0
|
@@ -19,7 +19,7 @@ def all():
|
|
|
19
19
|
|
|
20
20
|
# Python packages
|
|
21
21
|
print("[yellow]🐍 Installing Python packages...[/yellow]")
|
|
22
|
-
run("pip install fastapi uvicorn sqlalchemy psycopg2-binary python-dotenv bdh-fastapi-new")
|
|
22
|
+
run("pip install fastapi uvicorn sqlalchemy psycopg2-binary python-dotenv bdh-fastapi-new --break-system-packages")
|
|
23
23
|
|
|
24
24
|
# Oh My Zsh
|
|
25
25
|
print("[yellow]⚡ Installing Oh My Zsh...[/yellow]")
|
|
@@ -27,8 +27,8 @@ def all():
|
|
|
27
27
|
|
|
28
28
|
# BDH Configs
|
|
29
29
|
print("[yellow]🔧 Applying BDH configs...[/yellow]")
|
|
30
|
-
run("cp ~/.bdh-linux/configs/.zshrc ~/.zshrc")
|
|
31
|
-
run("cp ~/.bdh-linux/configs/aliases.sh ~/.aliases.sh")
|
|
30
|
+
run("cp ~/.config/bdh-linux/configs/.zshrc ~/.zshrc")
|
|
31
|
+
run("cp ~/.config/bdh-linux/configs/aliases.sh ~/.aliases.sh")
|
|
32
32
|
|
|
33
33
|
print("")
|
|
34
34
|
print("[green]✅ bdh-linux installed![/green]")
|
|
@@ -44,7 +44,7 @@ def minimal():
|
|
|
44
44
|
run("sudo pacman -S --noconfirm python python-pip git zsh curl wget")
|
|
45
45
|
|
|
46
46
|
print("[yellow]🐍 Installing Python packages...[/yellow]")
|
|
47
|
-
run("pip install fastapi uvicorn bdh-fastapi-new")
|
|
47
|
+
run("pip install fastapi uvicorn bdh-fastapi-new --break-system-packages")
|
|
48
48
|
|
|
49
49
|
print("")
|
|
50
50
|
print("[green]✅ Minimal install done![/green]")
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
[build-system]
|
|
2
|
-
requires = ["setuptools>=61.0"]
|
|
2
|
+
requires = ["setuptools>=61.0","wheel"]
|
|
3
3
|
build-backend = "setuptools.build_meta"
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "bdh-linux"
|
|
7
|
-
version = "
|
|
7
|
+
version = "v2.0"
|
|
8
8
|
description = "bdh-linux — Backend Developer OS setup tool for Arch/Manjaro"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = {text = "MIT"}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|