forked from modin-project/modin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 721 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="modin",
version="0.5.2",
description="Modin: Make your pandas code run faster by changing one line of code.",
packages=find_packages(),
url="https://github.com/modin-project/modin",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=["pandas==0.24.2", "ray==0.7"],
extras_require={
# can be installed by pip install modin[dask]
"dask": ["dask==1.1.0", "distributed==1.25.0"]
},
)