diff --git a/setup.py b/setup.py index bfb9b12..624eff6 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages import os -VERSION = '1.0.2' +VERSION = '1.0.4' DESCRIPTION = 'Tensorflow ML' LONG_DESCRIPTION = 'An abstract implementation of commonly used machine learning algorithms using TensorFlow 2.0' @@ -15,7 +15,7 @@ # Setting up setup( # the name must match the folder name 'verysimplemodule' - name="tensorflow_ml", + name="tensorflow-ml", version=VERSION, author="Siddhant Pathak", author_email="siddhantpathak2@gmail.com", @@ -27,9 +27,8 @@ keywords=['python', 'tensorflow', 'ml'], classifiers= [ - "Intended Audience :: Education", - "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.11", "Operating System :: MacOS :: MacOS X", "Operating System :: POSIX :: Linux", ] -) \ No newline at end of file +)