https://github.com/hamirmahal/ruff-virtual-environment
https://github.com/hamirmahal/ruff-virtual-environment
ci continuous-integration github github-actions mypy python python-3 python3 ruff ruff-python
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hamirmahal/ruff-virtual-environment
- Owner: hamirmahal
- Created: 2025-01-25T23:30:37.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-10T23:44:41.000Z (about 1 year ago)
- Last Synced: 2025-05-26T23:42:16.891Z (about 1 year ago)
- Language: Python
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Setup
1. Run
```
python3 -m venv venv/
```
2. Restart your terminal or run
```
source venv/bin/activate
```
## To install the packages in [`requirements.txt`](requirements.txt)
```
pip list
pip install -r requirements.txt
pip list
pre-commit install
pip list
```
## To install the latest packages
```
pip list
pip install ruff
pip list
pip install mypy
pip list
pip install pre-commit
pip list
pip install pylint
pip list
# "Freeze" the requirements so we know what versions we are using.
pip freeze > requirements.txt && pip list
```
# Running the Program
You can run the program with
```
time python src/main.py
```
in your terminal after completing setup.