mirror of
https://github.com/wassname/p_tqdm.git
synced 2026-09-09 11:28:21 +08:00
15 lines
448 B
Python
15 lines
448 B
Python
from distutils.core import setup
|
|
|
|
setup(
|
|
name = 'p_tqdm',
|
|
packages = ['p_tqdm'],
|
|
version = '0.1',
|
|
description = 'Parallel processing with progress bars',
|
|
author = 'Kyle Swanson',
|
|
author_email = 'swansonk.14@gmail.com',
|
|
url = 'https://github.com/swansonk14/p_tqdm',
|
|
download_url = 'https://github.com/swansonk14/p_tqdm/archive/0.1.tar.gz',
|
|
keywords = ['tqdm', 'progress bar', 'parallel'],
|
|
classifiers = [],
|
|
)
|