Skip to content

Commit

Permalink
Update Python version requirement in pyproject.toml to support Python…
Browse files Browse the repository at this point in the history
… 3.8 and add corresponding classifier
  • Loading branch information
bhavnicksm committed Jan 4, 2025
1 parent 09f7192 commit bf20aa3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "chonkie"
version = "0.4.0"
description = "🦛 CHONK your texts with Chonkie ✨ - The no-nonsense RAG chunking library"
readme = "README.md"
requires-python = ">=3.9"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = ["chunking", "rag", "nlp", "text-processing"]
authors = [
Expand All @@ -17,6 +17,7 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8"
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand All @@ -38,6 +39,7 @@ dependencies = [
[project.urls]
Homepage = "https://github.com/bhavnicksm/chonkie"
Documentation = "https://docs.chonkie.ai"

[project.optional-dependencies]
model2vec = ["model2vec>=0.1.0", "numpy>=1.23.0, <2.2"]
st = ["sentence-transformers>=3.0.0", "numpy>=1.23.0, <2.2"]
Expand Down

0 comments on commit bf20aa3

Please sign in to comment.