Metadata-Version: 2.1
Name: auto-package-installer
Version: 0.1.3
Summary: A package to auto install requirements.txt file into a virtual environment
Home-page: 
Author: Slurrps Mcgee
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.12
Description-Content-Type: text/markdown
License-File: LICENSE

This is a project to auto install package dependencies into a virtual environment by reading a requirements.txt file.

Example call factory
# Import the package
from auto-package-installer.factory import OSDependencyManagerFactory

# Get the Handler
handler = OSDependencyManagerFactory.get_handler()
# Call the initializ_dependencies giving it the python major and minor values
handler.initialize_dependencies(3, 12)
