-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (42 loc) · 1.02 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
"""
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='xputer',
version='0.2.0', # Major.Minor.Patch
author='Julhash Kazi',
author_email='xputer@kazilab.se',
url='https://www.kazilab.se',
description='An XGBoost powered robust imputer',
license='Apache-2.0',
install_requires=[
'IPython',
'joblib',
'matplotlib',
'nimfa',
'numpy',
'optuna',
'pandas',
'scikit-learn',
'torch',
'tqdm',
'xgboost'
],
extras_require={
'gui': ['PyQt5']
},
platforms='any',
packages=find_packages()
)