10 lines
354 B
Python
10 lines
354 B
Python
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='',
|
|
) |