From 920226234c7c62176fcabbbdb4e3a4b0af0a1b1d Mon Sep 17 00:00:00 2001 From: Ezra Lazuardy Date: Fri, 15 Nov 2024 04:45:12 +0700 Subject: [PATCH] feat: update --- README.md | 2 +- setup.cfg | 4 ++-- setup.py | 10 +++++----- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 5fd9a26..07c6f7f 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ All useful contributions to make this a better project will be happily received. This package may then be installed by running: ```bash -pip install lazuardy-anfis +pip install lazuardy_anfis ```
diff --git a/setup.cfg b/setup.cfg index bb62af2..db30b44 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] -name = lazuardy-anfis -version = 0.0.1 +name = lazuardy_anfis +version = 0.0.2 author = Lazuardy author_email = contact@lazuardy.tech description = Adaptive Neuro Fuzzy Inference System Implementation in Python. diff --git a/setup.py b/setup.py index c5cd5d4..cf6e686 100644 --- a/setup.py +++ b/setup.py @@ -7,8 +7,8 @@ required = f.read().splitlines() setup( - name="lazuardy-anfis", - version="0.0.1", + name="lazuardy_anfis", + version="0.0.2", description="Adaptive Neuro Fuzzy Inference System Implementation in Python.", long_description=long_description, long_description_content_type="text/markdown", @@ -16,15 +16,15 @@ author_email="contact@lazuardy.tech", packages=find_packages( include=[ - "lazuardy-anfis", "anfis", - "fnn", "fuzzy-logic", "neural-networks", + "fnn", "lazuardy", + "lazuardy_anfis", ] ), - keywords="anfis, fuzzy logic, neural networks, fnn, lazuardy", + keywords="anfis, fuzzy logic, neural networks, fnn, lazuardy, lazuardy anfis", url="https://github.com/lazuardy-tech/anfis", download_url="https://github.com/lazuardy-tech/anfis/releases", license="MIT",