-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 715 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
# this lead import of all package during installation and as a result, break install
# from gpuparallel import __version__
setup(
name="gpuparallel",
version="0.2.3",
description="Joblib-like interface for parallel GPU computations (e.g. data preprocessing)",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://gpuparallel.readthedocs.io/en/latest/?badge=latest",
author="Vladimir Ivashkin",
author_email="illusionww@gmail.com",
license="MIT",
packages=["gpuparallel"],
install_requires=["tqdm", "psutil"],
extras_require={
"billiard": ["billiard>=3.6.4.0,<=4.2.0"],
},
)