-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
30 lines (26 loc) · 827 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
import sys
from setuptools import setup, find_packages
try:
import numpy
except ImportError:
print('numpy is required during installation')
sys.exit(1)
try:
import scipy
except ImportError:
print('scipy is required during installation')
sys.exit(1)
setup(name='skope-rules',
version='1.0.0',
description='Machine Learning with Interpretable Rules',
url='https://github.com/skope-rules/skope-rules',
author='see AUTHORS.rst',
license='BSD 3 clause',
packages=find_packages(),
keywords=['learning with rules',
'interpretable machine learning'],
install_requires=['numpy>=1.10.4',
'scikit-learn>=0.17.1',
'scipy>=0.17.0',
'pandas>=0.18.1'
])