forked from xqnwang/darima
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 818 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
import os
from setuptools import setup
def read(file):
return open(os.path.join(os.path.dirname(__file__), file)).read()
setup(name='darima',
version='0.01',
description='Distributed ARIAM modeling',
keywords='spark, spark-ml, pyspark, mapreduce',
long_description=read('README.md'),
long_description_content_type='text/markdown',
url='https://github.com/xqnwang/darima',
author='Xiaoqian Wang, Feng Li, Yanfei Kang, Rob J Hyndman',
author_email='xiaoqianwang@buaa.edu.cn',
license='MIT',
packages=['darima'],
install_requires=[
'pyspark >= 2.3.1',
'sklearn >= 0.21.2',
'numpy >= 1.16.3',
'pandas >= 0.23.4',
'rpy2 >= 3.0.4',
],
zip_safe=False,
python_requires='>=3.7',
)