Skip to content

Commit

Permalink
release-1.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ChanLumerico committed Sep 16, 2024
1 parent 3a53bac commit 2d2e6d3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ A Comprehensive Python Module for Machine Learning and Data Science

<img alt="pypi-version" src="https://img.shields.io/pypi/v/luma-ml?logo=python&logoColor=white&color=blue">
<img alt="pypi-downloads" src="https://img.shields.io/pypi/dm/luma-ml">
<img src="https://img.shields.io/badge/total downloads-11.2k-red">
<img src="https://img.shields.io/badge/total downloads-11.3k-red">
<img alt="GitHub code size in bytes" src="https://img.shields.io/github/languages/code-size/ChanLumerico/luma?color=yellow">
<img alt="Code Style" src="https://img.shields.io/badge/code%20style-black-000000.svg">

Expand Down Expand Up @@ -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) |
10 changes: 6 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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)",
Expand All @@ -26,5 +26,7 @@
"pandas",
"matplotlib",
"seaborn",
"rich",
],
include_package_data=True,
)

0 comments on commit 2d2e6d3

Please sign in to comment.