-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (49 loc) · 1.55 KB
/
Copy pathsetup.py
File metadata and controls
52 lines (49 loc) · 1.55 KB
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
"""
Setup alphaML
"""
import sys
try:
from setuptools import setup, find_packages
except ImportError:
raise ImportError("Please install `setuptools`")
if not (sys.version_info[0] == 3 and sys.version_info[1] >= 9):
raise RuntimeError(
'alphaML requires Python 3.9 or higher.\n'
'You are using Python {0}.{1}'.format(
sys.version_info[0], sys.version_info[1])
)
# main setup command
setup(
name='alphaml',
version='0.1.3', # Major.Minor.Patch
author='Julhash Kazi',
author_email='aml@kazilab.se',
url='https://www.kazilab.se',
description='Build a CLETE Binary Classification Model',
license='Apache-2.0',
install_requires=[
'catboost',
'imbalanced-learn',
'IPython',
'kaleido',
'lime',
'lightgbm',
'matplotlib',
'numpy',
'openpyxl',
'optuna',
'pandas',
'plotly',
'requests',
'scipy',
'scikit-learn',
'scikit-optimize',
'shap',
'tensorflow',
'torch',
'tqdm',
'xgboost'
],
platforms='any',
packages=find_packages()
)