-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 852 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
32
from setuptools import setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="cimcb_lite",
version="0.1.11",
description="This is a pre-release.",
long_description=long_description,
license="http://www.apache.org/licenses/LICENSE-2.0.html",
url="https://github.com/KevinMMendez/cimcb_lite",
packages=[
"cimcb_lite",
"cimcb_lite.bootstrap",
"cimcb_lite.cross_val",
"cimcb_lite.model",
"cimcb_lite.plot",
"cimcb_lite.utils"],
python_requires='>=3.5',
install_requires=[
"bokeh>=1.0.0",
"numpy",
"pandas",
"scipy",
"scikit-learn",
"statsmodels",
"tqdm",
"xlrd"],
author='Kevin Mendez, David Broadhurst',
author_email='[email protected], [email protected]',
)