from setuptools import find_packages, setup setup( name='src', packages=find_packages(), version='0.2.0', description='ISYE 6740 assignment where Naive Bayes, Logistic and KNN classifiers are compared utilizing the marriage dataset, and a spam classifier built from scratch using Naive Bayes.', author='Mark Pearl', license='', )