From 2d2e6d34094d5332a930ae8ff9b91a5ed7b64ad3 Mon Sep 17 00:00:00 2001 From: Chan Lee <150145948+ChanLumerico@users.noreply.github.com> Date: Mon, 16 Sep 2024 03:49:09 +0000 Subject: [PATCH] release-1.1.6 --- README.md | 6 +++--- setup.py | 10 ++++++---- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index dea3862..aac1e9f 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ A Comprehensive Python Module for Machine Learning and Data Science pypi-version pypi-downloads - + GitHub code size in bytes Code Style @@ -107,6 +107,6 @@ Luma is inspired by these libraries: | | Description | | --- | --- | -| Latest Version | 1.1.5 | -| Lines of Code | ~31.5K | +| Latest Version | 1.1.6 | +| Lines of Code | ~33.0K | | Dependencies | NumPy, SciPy, Pandas, Matplotlib, Seaborn, MLX(Optional) | diff --git a/setup.py b/setup.py index 924196c..bcdb46d 100644 --- a/setup.py +++ b/setup.py @@ -1,19 +1,19 @@ import setuptools +import os - -with open("README.md", "r") as fh: +with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read() setuptools.setup( name="luma-ml", - version="1.1.5", + version="1.1.6", author="ChanLumerico", author_email="greensox284@gmail.com", description="A Comprehensive Python Module for Machine Learning and Data Science", long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/ChanLumerico/luma", - packages=setuptools.find_namespace_packages(), + packages=setuptools.find_namespace_packages(include=["luma.*"]), classifiers=[ "Programming Language :: Python :: 3", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", @@ -26,5 +26,7 @@ "pandas", "matplotlib", "seaborn", + "rich", ], + include_package_data=True, )