Metadata-Version: 2.3
Name: psykickai-tools
Version: 0.1.0
Summary: A collection of reusable Python tools and utilities (logging, etc.) designed to streamline project setup and provide out-of-the-box functionality for common development needs.
License: MIT
Keywords: python,tools,utilities,logging
Author: Gaurav Sharma
Author-email: psykickai@gmail.com
Requires-Python: ==3.12.8
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: pandas (>=2.2.3,<3.0.0)
Project-URL: Homepage, https://github.com/psykick-21/psykickai-tools
Project-URL: Repository, https://github.com/psykick-21/psykickai-tools
Description-Content-Type: text/markdown

# psykickai-tools

This package is a collection of tools for working with the `psykickai` package. Some of the functionalities can be used independently. To use it independently, follow these steps:
 
1. Ensure Python 3.12.8 is installed and available in your system PATH
2. Update pip to the latest version:
   ```
   python -m pip install --upgrade pip
   ```
3. Navigate to your desired project directory
4. Create a new Python virtual environment:
   ```
   python -m venv venv
   ```
5. Activate the virtual environment:
   - Windows: `.\venv\Scripts\activate`
   - Linux/Mac: `source venv/bin/activate`
6. Install Poetry package manager:
   ```
   pip install poetry==2.0.1
   ```
7. Install project dependencies:
   ```
   poetry install
   ```

