-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpyproject.toml
70 lines (64 loc) · 1.56 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "leettools"
version = "1.0.17"
authors = [
{ name="LeetTools-dev", email="leettools@gmail.com" },
]
description = "AI Search Workflow with Document Pipelines."
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"click==8.1.7",
"Jinja2==3.1.3",
"markdownify==0.13.1",
"aiofiles==23.2.1",
"pyyaml==6.0.2",
"pydantic==2.10.3",
"python-dotenv==1.0.1",
"Requests==2.32.3",
"httpx==0.27.2",
"fastapi==0.109.2",
"uvicorn==0.27.1",
"rich==13.9.4",
"nltk==3.8.1",
"psutil==5.9.8",
"tldextract==5.1.3",
"urllib3==2.2.3",
"Babel==2.16.0",
"beautifulsoup4==4.12.3",
"openai==1.59.7",
"scipy==1.14.1",
"sentence_transformers==2.5.1",
"tiktoken==0.8.0",
"duckdb==1.1.3",
"docling==2.26.0",
"docling_core==2.23.0",
"chonkie==0.5.1",
"langchain-community==0.3.15",
"firecrawl-py==1.12.0",
"langid==1.1.6",
]
[project.urls]
"Homepage" = "https://github.com/leettools-dev/leettools"
"Bug Tracker" = "https://github.com/leettools-dev/leettools/issues"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
markers = [
"slow : marks tests as slow (deselect with '-m \"not slow\"')"
]
[tool.black]
line-length = 88
[tool.setuptools]
include-package-data = true
[project.scripts]
leet = "leettools.cli.cli:main"