vibe-engineering 0.1.9__py3-none-any.whl → 0.1.10__py3-none-any.whl
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.
- {vibe_engineering-0.1.9.dist-info → vibe_engineering-0.1.10.dist-info}/METADATA +23 -10
- {vibe_engineering-0.1.9.dist-info → vibe_engineering-0.1.10.dist-info}/RECORD +4 -4
- {vibe_engineering-0.1.9.dist-info → vibe_engineering-0.1.10.dist-info}/WHEEL +0 -0
- {vibe_engineering-0.1.9.dist-info → vibe_engineering-0.1.10.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: vibe-engineering
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.10
|
4
4
|
Summary: Add your description here
|
5
5
|
Home-page: https://github.com/vibeengineering/vibe-engineering
|
6
6
|
Author: Vibe Engineering Team
|
@@ -41,14 +41,26 @@ Vibe Engineering is a powerful command-line tool that helps development teams ma
|
|
41
41
|
|
42
42
|
## 🚀 Quick Install
|
43
43
|
|
44
|
-
###
|
45
|
-
```
|
46
|
-
|
44
|
+
### From Source (Recommended)
|
45
|
+
```bash
|
46
|
+
# Clone the repository
|
47
|
+
git clone https://github.com/vibeengineering/vibe-engineering.git
|
48
|
+
cd vibe-engineering
|
49
|
+
|
50
|
+
# Run the install script
|
51
|
+
./install-local.sh
|
52
|
+
|
53
|
+
# Add to PATH (if not already)
|
54
|
+
export PATH="$HOME/.local/bin:$PATH"
|
55
|
+
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc
|
47
56
|
```
|
48
57
|
|
49
|
-
###
|
58
|
+
### From PyPI (Note: May have outdated version)
|
50
59
|
```bash
|
51
|
-
|
60
|
+
pip install vibe-engineering
|
61
|
+
|
62
|
+
# If vibe command not found, add to PATH:
|
63
|
+
export PATH="$HOME/.local/bin:$PATH"
|
52
64
|
```
|
53
65
|
|
54
66
|
### Manual Installation
|
@@ -57,11 +69,12 @@ curl -sSL https://raw.githubusercontent.com/vibeengineering/vibe-engineering/mai
|
|
57
69
|
git clone https://github.com/vibeengineering/vibe-engineering.git
|
58
70
|
cd vibe-engineering
|
59
71
|
|
60
|
-
# Install
|
61
|
-
pip install
|
72
|
+
# Install build tools
|
73
|
+
pip install build
|
62
74
|
|
63
|
-
#
|
64
|
-
|
75
|
+
# Build and install
|
76
|
+
python3 -m build --no-isolation
|
77
|
+
pip install dist/vibe_engineering-*.whl
|
65
78
|
|
66
79
|
# Setup configuration
|
67
80
|
cp .env.dist .env
|
@@ -10,7 +10,7 @@ src/llm/embeddings.py,sha256=wH-aihD6HfkJtUn4TJGpqLz9BYnX5i0SyRT0tf8hb2E,2987
|
|
10
10
|
src/llm/segmentation.py,sha256=zex5Elfk_ph0nFFzszxtagN6o1SmTu1BsHJ9W9Njlb0,4753
|
11
11
|
src/schemas/__init__.py,sha256=rdw4M8Gm95XN5sPgfReQO0WLePty-OE-4OYjSFrGlBM,163
|
12
12
|
src/schemas/models.py,sha256=aIO8qtG0gdL6pWc0cyhYC1jqevpNIfkOQJYSA3Lc_Ew,1011
|
13
|
-
vibe_engineering-0.1.
|
14
|
-
vibe_engineering-0.1.
|
15
|
-
vibe_engineering-0.1.
|
16
|
-
vibe_engineering-0.1.
|
13
|
+
vibe_engineering-0.1.10.dist-info/METADATA,sha256=XRcIdMzIK_8IPH3YNA-ayzb5IrKag_nuPvn4GYVjNLQ,7873
|
14
|
+
vibe_engineering-0.1.10.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
15
|
+
vibe_engineering-0.1.10.dist-info/top_level.txt,sha256=74rtVfumQlgAPzR5_2CgYN24MB0XARCg0t-gzk6gTrM,4
|
16
|
+
vibe_engineering-0.1.10.dist-info/RECORD,,
|
File without changes
|
File without changes
|