10 lines
341 B
Python
10 lines
341 B
Python
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name='src_hw4',
|
|
packages=find_packages(),
|
|
version='0.1.0',
|
|
description='ISYE 6740 assignment 4 where SVM and Neural Network are compared utilizing the marriage dataset, and a spam classifier built from scratch using Naive Bayes.',
|
|
author='Mark Pearl',
|
|
license='',
|
|
) |