-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
67 lines (54 loc) · 1.95 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# -*- coding: utf-8 -*-
"""
Created on Mon Jun 7 10:30:55 2021
@author: Georgios Sarailidis
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
from os import path
from io import open
# =============================================================================
# here = path.abspath(path.dirname(__file__))
# # Get the long description from the README file
# with open(path.join(here, 'README.md'), encoding='utf-8') as f:
# long_description = f.read()
# =============================================================================
setup(
name='InteractiveDT', # Required
version='1.0.0', # Required
description='Toolbox for Interactive Construction and analysis of Decision Trees', # Optional
url='https://github.com/Sarailidis/Interactive-Decision-Trees', # Optional
author='Georgios Sarailidis', # Optional
author_email='[email protected]', # Optional
packages=find_packages(exclude=['Workflows']), # Required.
install_requires=[
"scikit-learn==0.24.1",
"plotly>=4.5.2",
"ipywidgets>=7.5.1",
"python-igraph>=0.8.0",
"chart-studio>=1.0.0",
"pandas",
"numpy",
"matplotlib"
],
)
# =============================================================================
# "scikit-learn==0.22.1",
# "plotly==4.5.2",
# "ipywidgets==7.5.1",
# "python-igraph==0.8.0",
# "chart-studio==1.0.0",
# "pandas==0.25.2",
# "numpy==1.16.5",
# "matplotlib==3.1.1"
# =============================================================================
# =============================================================================
# "scikit-learn==0.22.1",
# "plotly==4.7.1",
# "ipywidgets==7.5.1",
# "python-igraph==0.8.2",
# "chart-studio==1.1.0",
# "pandas==1.2.4",
# "numpy==1.18.1",
# "matplotlib==3.2.1"
# =============================================================================