-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
35 lines (32 loc) · 1.14 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
import sys
import os
from setuptools import setup, find_packages
if sys.version_info < (3, 6):
sys.exit('Python>=3.6 is required by ContrastiveExplanation (Foil Trees).')
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='ContrastiveExplanation',
version='0.2',
python_requires='>3.6',
description='Contrastive and counterfactual explanations for machine learning (ML) using Foil Trees',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/MarcelRobeer/ContrastiveExplanation',
author='Marcel Robeer',
author_email='[email protected]',
license='BSD 3-Clause License',
packages=find_packages(),
install_requires=[
'matplotlib',
'networkx',
'numpy>=1.16.5',
'pandas',
'scipy',
'scikit-learn>=0.18',
'scikit-image>=0.12',
],
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3'
])