Files
p_tqdm/setup.py
T

16 lines
434 B
Python

from distutils.core import setup
setup(
name = 'p_tqdm',
packages = ['p_tqdm'],
version = '1.0',
description = 'Parallel processing with progress bars',
author = 'Kyle Swanson',
author_email = 'swansonk.14@gmail.com',
url = 'https://github.com/swansonk14/p_tqdm',
license = 'MIT',
install_requires = ['tqdm', 'pathos'],
keywords = ['tqdm', 'progress bar', 'parallel'],
classifiers = [],
)