-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
24 lines (22 loc) · 794 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
from setuptools import setup
setup(
name='RandomForestExplorer',
version='0.1.0',
description='A small package for rule discovery in Random Forest',
url='https://github.com/NimaSarajpoor/RandomForestExplorer',
author='Nima Sarajpoor',
author_email='[email protected]',
license='BSD 3-Clause',
packages=['RandomForestExplorer'],
install_requires=['numpy>=1.21',
'pandas>=1.4',
'mlxtend>=0.20',
'scikit-learn>=1.1'],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
#'License :: OSI Approved :: BSD License',
#'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.9',
],
)