From 2e38ef343414e59f76f57b66c2ba5cb432343b30 Mon Sep 17 00:00:00 2001 From: Krystian Safjan Date: Tue, 25 Jun 2024 16:41:45 +0200 Subject: [PATCH] chore: update project description and versioning --- pyproject.toml | 20 +++++++++++++++++++- src/rankflow/__init__.py | 7 +++++++ src/rankflow/_version.py | 2 ++ 3 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 src/rankflow/_version.py diff --git a/pyproject.toml b/pyproject.toml index 18dc120..653e1b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "rankflow" -version = "0.1.0" +version = "0.1.1" description = "Plot how multiple ranks evolved over processing steps - draw a rankflow." authors = [ {name = "Krystian Safjan", email = "ksafjan@gmail.com"}, @@ -12,6 +12,24 @@ dependencies = [ requires-python = ">=3.9" readme = "README.md" license = {text = "MIT"} +keywords = ["rankflow", "rank", "flow", "plot", "RAG", "retriever", "evaluation", "rag-evaluation", "rag-eval", "rag-eval-plot", "rag-evaluation-plot"] +classifiers = [ + "Development Status :: 3 - Alpha", + "Intended Audience :: Developers", + "Intended Audience :: Science/Research", + "License :: OSI Approved :: MIT License", + "Programming Language :: Python :: 3", + "Topic :: Software Development :: Libraries :: Python Modules", + "Topic :: Utilities", + "Topic :: Scientific/Engineering", + "Topic :: Scientific/Engineering :: Information Analysis", + "Topic :: Scientific/Engineering :: Artificial Intelligence", + "Topic :: Scientific/Engineering :: Visualization", + "Topic :: Scientific/Engineering :: Mathematics", + ] +[project.urls] +"Source" = "https://github.com/izikeros/rankflow" +"Bug Tracker" = "https://github.com/izikeros/rankflow/issues" [build-system] requires = ["pdm-backend"] diff --git a/src/rankflow/__init__.py b/src/rankflow/__init__.py index e69de29..5267a6e 100644 --- a/src/rankflow/__init__.py +++ b/src/rankflow/__init__.py @@ -0,0 +1,7 @@ +# add version +from ._version import __version__ # noqa: F401 + +# add __all__ +__all__ = ["RankFlow"] # noqa: F405 + +from .main import RankFlow diff --git a/src/rankflow/_version.py b/src/rankflow/_version.py new file mode 100644 index 0000000..03a3d08 --- /dev/null +++ b/src/rankflow/_version.py @@ -0,0 +1,2 @@ +# add version +__version__ = "0.1.1"