-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (28 loc) · 1019 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[project]
name = "markdown-chunkify"
version = "0.1"
description = "A Python package containing utilities for processing Markdowns."
authors = [
{name = "Gal Gilor", email = "[email protected]"}
]
packages = [{include = "markdown_chunkify"}]
readme = "README.md"
requires-python = ">=3.12,<3.13"
dependencies = ["pymupdf4llm (>=0.0.17,<0.0.18)", "pydantic (>=2.10.6,<3.0.0)", "jinja2 (>=3.1.5,<4.0.0)", "google-cloud-aiplatform (>=1.80.0,<2.0.0)", "tenacity (>=9.0.0,<10.0.0)", "google-genai (>=1.2.0,<2.0.0)"]
[project.urls]
Github = "https://github.com/Gal-Gilor/markdown-chunkify"
Issues = "https://github.com/Gal-Gilor/markdown-chunkify/issues"
[tool.poetry.group.dev.dependencies]
pytest = "^7.0"
pytest-cov = ">=6.0.0,<7.0.0"
black = "^23.0"
isort = ">=5.13.2,<6.0.0"
ruff = ">=0.9.3,<0.10.0"
ipykernel = ">=6.29.5,<7.0.0"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.ruff.lint.isort]
force-single-line = true
[tool.ruff.format]
quote-style = "double"