-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (79 loc) · 2.16 KB
/
Copy pathpyproject.toml
File metadata and controls
86 lines (79 loc) · 2.16 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[tool.poetry]
name = "embs"
version = "0.1.8"
description = "Embs is a lightweight Python toolkit for document retrieval, embedding generation, and ranking—ideal for RAG-based AI, chatbots, and search systems with caching support."
authors = ["Hieu Lam <lamhieu.vk@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
pytest = "^8.3.4"
aiohttp = "^3.8.4"
pytest-asyncio = "^0.25.2"
duckduckgo-search = "^7.1.1"
numpy = "^1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pyright]
include = ["src"]
ignore = ["**/typings"]
exclude = [
".*",
"__*",
"**/typings",
]
typeCheckingMode = "basic"
stubPath = "typings"
typeshedPath = "typings"
pythonPlatform = "Linux"
reportGeneralTypeIssues = false
reportAssignmentType = false
reportMissingModuleSource = false
[project]
license = "MIT"
keywords = [
"embs",
"retrieval-augmented-generation",
"RAG",
"docsifer",
"embeddings",
"semantic-search",
"ranking",
"document-processing",
"chatbots",
"AI-agent",
"web-scraping",
"knowledge-retrieval",
"caching",
"lru-cache",
"disk-cache",
"async",
"aiohttp",
"duckduckgo",
"python-3.10+"
]
classifiers = [
# Intended audience
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Intended Audience :: Science/Research",
# Topics
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Utilities",
"Topic :: Information Retrieval",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: System :: Distributed Computing",
# License
"License :: OSI Approved :: MIT License",
# Supported Python versions
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]