-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (22 loc) · 926 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
from setuptools import setup
import os
import sys
if sys.version_info[0] < 3:
with open('README.rst') as f:
long_description = f.read()
else:
with open('README.rst', encoding='utf-8') as f:
long_description = f.read()
setup(
name='MetaHeuristicsFS',
version='0.0.8',
description='Implementation of metaheuristic algorithms for machine learning feature selection. Companion library for the book `Feature Engineering & Selection for Explainable Models: A Second Course for Data Scientists`',
long_description=long_description,
long_description_content_type='text/markdown', # This is important!
author='StatguyUser',
url='https://github.com/StatguyUser/MetaHeuristicsFS',
install_requires=['numpy','scikit-learn','pandas'],
download_url='https://github.com/MetaHeuristicsFS/MetaHeuristicsFS.git',
py_modules=["MetaHeuristicsFS"],
package_dir={'':'src'},
)