Metadata-Version: 2.1
Name: connectionvault
Version: 0.0.1
Summary: help with connection details
License: MIT
Author: Your Name
Author-email: you@example.com
Requires-Python: >=3.11,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: PyYAML (>=6.0.2,<7.0.0)
Requires-Dist: SQLAlchemy (>=2.0.36,<3.0.0)
Requires-Dist: pandas (>=2.2.3,<3.0.0)
Requires-Dist: psycopg2 (>=2.9.10,<3.0.0)
Requires-Dist: pyodbc (>=5.2.0,<6.0.0)
Description-Content-Type: text/markdown

# ConnectionVault

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

# Create and activate the virtual environment
python3 -m venv venv
source venv/bin/activate  # For Linux/Mac
# venv\Scripts\activate  # For Windows

# Install Poetry inside the virtual environment
pip install poetry

# Initialize the Poetry project if not already done
poetry init

# Add dependencies
poetry add requests

# Build the project
poetry build

