-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
39 lines (36 loc) · 929 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
from setuptools import setup, find_packages
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name='parallel-pandas',
python_requires='>=3.7',
version='0.6.5',
packages=find_packages(),
author='Dubovik Pavel',
author_email='[email protected]',
description='Parallel processing on pandas with progress bars',
long_description=long_description,
long_description_content_type='text/markdown',
keywords=[
'parallel pandas',
'progress bar',
'parallel apply',
'parallel groupby',
'multiprocessing bar',
],
url='https://github.com/dubovikmaster/parallel-pandas',
license='MIT',
install_requires=[
'pandas >= 1.4.0',
'dill',
'psutil',
'tqdm',
'scipy',
],
extras_require={
'numba': [
'numba',
]
},
platforms='any',
)