Files
tunmnlu/task_2/others-answer/omsa-main/ISYE-6740-OAN/homework3/setup.py
louiscklaw 9035c1312b update,
2025-02-01 02:09:32 +08:00

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='',
)