-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 696 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 696 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
try:
# Use setuptools (i.e., an extension of distutils) when available, e.g., because it provides support for
# "develop" installs.
from setuptools import setup
except ImportError:
# Fallback to distutils in case setuptools is not available.
from distutils.core import setup
__author__ = 'Yves callaert'
setup(
name="dsmodels",
description="dsmodels",
version="0.0.0.1",
packages=["dsmodels", "dsmodels.arima"],
scripts=[],
setup_requires=['numpy==1.14.0'],
install_requires=[
'six==1.11.0', 'numpy==1.14.0','pandas==0.21.0', 'scikit-learn==0.19.1','matplotlib', 'statsmodels==0.9.0','scipy==1.0.1'
],
dependency_links=[
]
)