forked from dask/dask-lightgbm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·44 lines (40 loc) · 1.05 KB
/
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
40
41
42
43
44
#!/usr/bin/env python
import io
import os
from setuptools import setup
install_requires = [
'numpy>=1.17.3',
'lightgbm>=2.3.0',
'dask>=2.6.0',
'distributed>=2.6.0',
'toolz>=0.10.0'
]
extras_require = {
'dev': [
'pytest>=5.2.2',
'pandas>=0.25.3',
'dask[dataframe]',
'dask-ml>=1.1.1',
'requests>=2.22.0',
'fsspec>=0.5.2',
'scikit-learn>=0.21.3'
],
'sparse': [
'sparse==0.5.0',
'scipy>=1.3.1'
]
}
setup(name='dask-lightgbm',
version='0.1.0.dev0',
description='Interactions between Dask and LightGBM',
long_description=(io.open('README.md', encoding='utf-8').read()
if os.path.exists('README.md')
else ''),
long_description_content_type='text/markdown',
license='BSD',
url='https://github.com/dask/dask-lightgbm',
install_requires=install_requires,
extras_require=extras_require,
packages=['dask_lightgbm'],
include_package_data=True,
zip_safe=False)