Metadata-Version: 2.1
Name: smart-parallelize
Version: 2.2.0
Summary: 
Author: Truman DeWalch
Author-email: trumandewalch@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: numpy (>=1.26.4,<2.0.0)
Requires-Dist: ray (>=2.10.0,<3.0.0)
Description-Content-Type: text/markdown

<!-- write a heading for describing this -->
## Description

This is a simple python package for easily parallelizing functions.

<!-- put this url in https://github.com/tdude78/smart_parallelize -->

URL: https://github.com/tdude78/smart_parallelize

<!-- Example code:

    from smart_parallel.parallelize import smart_parallelize
    layout = [ [sg.Text('Hello, world!')] ]
    window = sg.Window('Hello Example', layout)
    while True:
        event, values = window.read()
        if event == sg.WIN_CLOSED:
            break
    window.close() -->
