-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
35 lines (32 loc) · 1.16 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sphinx_doc
import sys
from os.path import abspath, dirname, join
from setuptools import setup
CLASSIFIERS = [
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
]
with open('README.rst') as readme:
long_desc = readme.read()
setup(
py_modules=['sphinx_doc'],
name=sphinx_doc.__name__,
version=sphinx_doc.__version__,
description='high level wrapper for parallel univariate time series forecasting'.strip(),
long_description=long_desc,
url='http://github.com/DavisTownsend/forecast',
author= sphinx_doc.__author__,
author_email='dtownsend@ea.com',
classifiers=CLASSIFIERS,
keywords='time series analysis forecast forecasting predict model parallel',
license='MIT',
packages=[sphinx_doc.__name__],
python_requires='~=3.5',
install_requires=['numpy','pandas','dask','distributed','pystan','rpy2','fbprophet','plotly','cufflinks'],
setup_requires=['pytest-runner'],
tests_require=['pytest']
)