-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 997 Bytes
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 997 Bytes
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
34
35
36
37
38
39
40
41
42
43
44
[project]
name = "pumpking"
version = "0.1.0"
description = "An open-source Python library designed to streamline the complex process of document chunking, parsing, and representation"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
{ name = "Yudivián Almeida Cruz", email = "yudiviant@gmail.com" }
]
classifiers = [
"Programming Language :: Python :: 3.10",
"Typing :: Typed",
]
# Dependencias: Pydantic (Core) y Markdown (Parsing robusto)
dependencies = [
"pydantic>=2.5.0",
"markdown>=3.5.0",
"openai>=1.0.0"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
# --- UV Configuration ---
[tool.uv]
dev-dependencies = [
"pytest>=8.0.0",
"ruff>=0.1.0",
"mypy>=1.8.0",
]
# --- Ruff (Linter) ---
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "B"] # Errores, Pyflakes, Imports, Bugbear (Simple)
# --- Mypy (Types) ---
[tool.mypy]
strict = true