-
Notifications
You must be signed in to change notification settings - Fork 45
/
setup.py
31 lines (27 loc) · 858 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
import os
from setuptools import setup
def read(file):
return open(os.path.join(os.path.dirname(__file__), file)).read()
setup(name='dlsa',
use_scm_version=True,
setup_requires=['setuptools_scm'],
description='Distributed Least Squares Approximations',
keywords='spark, spark-ml, pyspark, mapreduce',
long_description=read('README.md'),
long_description_content_type='text/markdown',
url='https://github.com/feng-li/dlsa',
author='Feng Li',
author_email='[email protected]',
license='MIT',
packages=['dlsa'],
install_requires=[
'pyspark >= 2.3.1',
'pyarrow >= 0.15.0',
'sklearn >= 0.21.2',
'numpy >= 1.16.3',
'pandas >= 0.23.4',
'rpy2 >= 3.0.4',
],
zip_safe=False,
python_requires='>=3.7',
)