Metadata-Version: 2.1
Name: mruus-lib
Version: 0.1.0
Summary: A common library for my Django projects
Home-page: https://github.com/mruus/mruus-lib
Author: Your Name
Author-email: your.email@example.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: setuptools
Requires-Dist: wheel

# Navigate to your common_lib directory
cd /path/to/common_lib

# Create a virtual environment
python -m venv venv

# Activate the virtual environment
# On Windows
venv\Scripts\activate
# On macOS/Linux
source venv/bin/activate
