Skip to content

Commit 4a5cf94

Browse files
authored
Merge pull request #8 from Kelocker/official-v1.0.0-release
Official v1.0.0 release
2 parents 90d3534 + 6ec01f9 commit 4a5cf94

File tree

5 files changed

+121
-13
lines changed

5 files changed

+121
-13
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -108,11 +108,11 @@ We are thrilled to announce that we are contributing to the global environment.
108108
## Venvat Global
109109

110110
<p align="center">
111-
<img src="https://drive.google.com/uc?id=1Novbu8DEG1GoGINQK5pb19I2yGD40TzJ" alt="venvat-global-beta-version"/>
111+
<img src="https://drive.google.com/uc?id=15e8BQvMFsyY1c-AM3S1vnUWQI8GI4u-7" alt="venvat-global-officials-version"/>
112112
</p>
113113

114114
<p align="center">
115-
<img src="https://drive.google.com/uc?id=1zH_oh-zisr8uPaBiFqWIta_M2UxnRb74" alt="global-venvat-beta-version now available for Linux and macOS"/>
115+
<img src="https://drive.google.com/uc?id=1zH_oh-zisr8uPaBiFqWIta_M2UxnRb74" alt="global-venvat-officials-version now available for Linux and macOS"/>
116116
</p>
117117

118118
---
@@ -161,17 +161,19 @@ pip install venvat
161161

162162
## Activating Your Virtual Environment
163163

164-
Once `venvat` is installed, you can easily activate your virtual environment. If you're using `venvat` for the first time or if you want to switch to a different virtual environment, you need to specify the name of your virtual environment.
164+
Once `venvat` is installed, you can easily activate your virtual environment.
165165

166166
If your virtual environment is named `venv`, you can run:
167167

168168
```
169169
venvat
170170
```
171171

172+
*Important* : Venvat recognise `venv` as default name of the virtual environment
173+
172174
### Specifying a Custom Virtual Environment
173175

174-
If your virtual environment is not named `venv`, you will need to configure it the first time you use `venvat`:
176+
If your virtual environment is not named `venv`, you will need to configure it for the first time:
175177

176178
```
177179
venvat --venv your-env-name
@@ -220,9 +222,7 @@ source ~/.zshrc
220222

221223
Restart your terminal to apply the changes.
222224

223-
Now, `venvat
224-
225-
` is available globally.
225+
Now, `venvat` is available globally.
226226

227227
*Optional* To uninstall `venvat` package, run:
228228

SECURITY.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ The following versions of our project are currently supported with security upda
66

77
| Version | Supported |
88
| ------- | ------------------ |
9-
| < 1.0 | :white_check_mark: |
9+
| ≥ 1.0 | :white_check_mark: |
10+
| < 1.0 | :x: |
11+
1012

1113

1214
## Reporting a Vulnerability

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.3.23
1+
1.0.0

docs/setup.md

Lines changed: 109 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,118 @@
11
# Setup Guide
22

3-
## Prerequisites
3+
## Table of content
4+
1. [Installation for Venvat (Windows only)](#installation-for-venvat-windows-only)
5+
- [Requirements](#requirements)
6+
- [Installing Python](#installing-python)
7+
- [Installing pip](#installing-pip)
8+
- [Installing venvat](#installing-venvat)
9+
- [Activating Your Virtual Environment](#activating-your-virtual-environment)
10+
- [Specifying a Custom Virtual Environment](#specifying-a-custom-virtual-environment)
11+
2. [Installation for Venvat Global (Linux and macOS)](#installation-for-venvat-global-linux-and-macos)
12+
3. [Clone repository](#Clone-repository)
413

5-
- Python 3.6 or later
6-
- pip package manager
714

815
## Installation
16+
## Installation for Venvat (Windows only)
917

18+
### Requirements
19+
20+
Before using **venvat**, ensure the following requirements are met:
21+
- **Python**: This tool requires Python 3.6 or newer. Install Python from [the official website](https://www.python.org/downloads/).
22+
- **Virtual Environment**: You should have a virtual environment already set up in your project. `venvat` is designed to activate these environments, not to create them.
23+
24+
### Installing Python
25+
26+
If you need to install Python, you can download it from the official site:
27+
28+
[https://www.python.org/downloads](https://www.python.org/downloads)
29+
30+
### Installing pip
31+
32+
If `pip` is not installed, you can install it by downloading `get-pip.py`:
33+
34+
```
35+
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
36+
python get-pip.py
37+
```
38+
39+
### Installing venvat
40+
41+
To install `venvat`, run the following command:
42+
43+
```
44+
pip install venvat
45+
```
46+
47+
---
48+
49+
## Activating Your Virtual Environment
50+
51+
Once `venvat` is installed, you can easily activate your virtual environment.
52+
53+
If your virtual environment is named `venv`, you can run:
54+
55+
```
56+
venvat
57+
```
58+
59+
*Important* : Venvat recognise `venv` as default name of the virtual environment
60+
61+
### Specifying a Custom Virtual Environment
62+
63+
If your virtual environment is not named `venv`, you will need to configure it for the first time:
64+
65+
```
66+
venvat --venv your-env-name
67+
```
68+
69+
Resetting your configuration:
70+
71+
```
72+
venvat --reset
73+
```
74+
75+
For more features, you can explore with:
76+
77+
```
78+
venvat --help
79+
```
80+
81+
---
82+
83+
## Installation for Venvat Global (Linux and macOS)
84+
85+
### Requirements
86+
87+
- **Python**: You need Python 3.6 or newer. Install it from [the official website](https://www.python.org/downloads/).
88+
- **pip**: Ensure `pip` is installed. You can follow the same pip installation process as described earlier.
89+
90+
### Installing Venvat Global
91+
92+
To install `venvat` globally, run:
93+
94+
```
95+
pip install venvat
96+
```
97+
98+
Then, activate it based on your shell:
99+
100+
For Bash:
101+
```
102+
source ~/.bashrc
103+
```
104+
105+
For Zsh:
106+
```
107+
source ~/.zshrc
108+
```
109+
110+
Restart your terminal to apply the changes.
111+
112+
Now, `venvat` is available globally.
113+
114+
115+
## Clone repository
10116
1. Clone the repository:
11117
```
12118
git clone https://github.com/Kelocker/venvat.git

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='venvat',
5-
version='0.3.23',
5+
version='1.0.0',
66
description='A script to activate Python virtual environments.',
77
long_description=open('README.md').read(),
88
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)