-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (27 loc) · 1.03 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
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
__version__ = '0.0.1'
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='grouped_permutation_importance',
packages=find_packages(),
include_package_data=True,
version=__version__,
description="Permutation Importances for Feature Subsets.",
long_description=long_description,
long_description_content_type="text/markdown",
author='Lucas Plagwitz',
author_email='[email protected]',
download_url="https://github.com/lucasplagwitz/grouped_permutation_importance/archive/' + __version__ + '.tar.gz",
url= "https://github.com/lucasplagwitz/grouped_permutation_importance.git",
keywords=['machine learning', 'explainable AI', 'feature importance', 'permutation importance', 'feature subsets'],
install_requires=[
'numpy',
'scikit-learn',
]
)