Metadata-Version: 2.1
Name: connectionvault
Version: 0.0.3
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

[![Upload Python Package](https://github.com/ankit48365/ConnectionVault/actions/workflows/python-publish.yml/badge.svg)](https://github.com/ankit48365/ConnectionVault/actions/workflows/python-publish.yml)

# ConnectionVault

To run this project :
define and save a path with name "conn_home", where you'll save connections.yaml file to save store your database credentials:

Linux:
echo 'export conn_home="path/outside/your/project/preferably"' >> ~/.bashrc
source ~/.bashrc

Windows: (takes a while for the new session to print the path)
setx conn_home "C:\path\outside\your\project\preferably"
echo %conn_home%



<!-- # 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
ead

