cognee 0.3.5__py3-none-any.whl → 0.3.6__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {cognee-0.3.5.dist-info → cognee-0.3.6.dist-info}/METADATA +2 -2
- {cognee-0.3.5.dist-info → cognee-0.3.6.dist-info}/RECORD +6 -8
- distributed/poetry.lock +0 -12238
- distributed/pyproject.toml +0 -185
- {cognee-0.3.5.dist-info → cognee-0.3.6.dist-info}/WHEEL +0 -0
- {cognee-0.3.5.dist-info → cognee-0.3.6.dist-info}/entry_points.txt +0 -0
- {cognee-0.3.5.dist-info → cognee-0.3.6.dist-info}/licenses/LICENSE +0 -0
- {cognee-0.3.5.dist-info → cognee-0.3.6.dist-info}/licenses/NOTICE.md +0 -0
distributed/pyproject.toml
DELETED
|
@@ -1,185 +0,0 @@
|
|
|
1
|
-
[project]
|
|
2
|
-
name = "cognee"
|
|
3
|
-
version = "0.2.2.dev0"
|
|
4
|
-
description = "Cognee - is a library for enriching LLM context with a semantic layer for better understanding and reasoning."
|
|
5
|
-
authors = [
|
|
6
|
-
{ name = "Vasilije Markovic" },
|
|
7
|
-
{ name = "Boris Arzentar" },
|
|
8
|
-
]
|
|
9
|
-
requires-python = ">=3.10,<=3.13"
|
|
10
|
-
readme = "README.md"
|
|
11
|
-
license = "Apache-2.0"
|
|
12
|
-
classifiers = [
|
|
13
|
-
"Development Status :: 4 - Beta",
|
|
14
|
-
"Intended Audience :: Developers",
|
|
15
|
-
"License :: OSI Approved :: Apache Software License",
|
|
16
|
-
"Topic :: Software Development :: Libraries",
|
|
17
|
-
"Operating System :: MacOS :: MacOS X",
|
|
18
|
-
"Operating System :: POSIX :: Linux",
|
|
19
|
-
"Operating System :: Microsoft :: Windows",
|
|
20
|
-
]
|
|
21
|
-
dependencies = [
|
|
22
|
-
"openai>=1.80.1,<2",
|
|
23
|
-
"python-dotenv>=1.0.1,<2.0.0",
|
|
24
|
-
"pydantic>=2.11.7,<3.0.0",
|
|
25
|
-
"pydantic-settings>=2.10.1,<3",
|
|
26
|
-
"typing_extensions>=4.12.2,<5.0.0",
|
|
27
|
-
"nltk>=3.9.1,<4.0.0",
|
|
28
|
-
"numpy>=1.26.4, <=4.0.0",
|
|
29
|
-
"pandas>=2.2.2,<3.0.0",
|
|
30
|
-
# Note: New s3fs and boto3 versions don't work well together
|
|
31
|
-
# Always use comaptible fixed versions of these two dependencies
|
|
32
|
-
"s3fs[boto3]==2025.3.2",
|
|
33
|
-
"sqlalchemy>=2.0.39,<3.0.0",
|
|
34
|
-
"aiosqlite>=0.20.0,<1.0.0",
|
|
35
|
-
"tiktoken>=0.8.0,<1.0.0",
|
|
36
|
-
"litellm>=1.57.4, <1.71.0",
|
|
37
|
-
"instructor>=1.9.1,<2.0.0",
|
|
38
|
-
"langfuse>=2.32.0,<3",
|
|
39
|
-
"filetype>=1.2.0,<2.0.0",
|
|
40
|
-
"aiohttp>=3.11.14,<4.0.0",
|
|
41
|
-
"aiofiles>=23.2.1,<24.0.0",
|
|
42
|
-
"rdflib>=7.1.4,<7.2.0",
|
|
43
|
-
"pypdf>=4.1.0,<7.0.0",
|
|
44
|
-
"jinja2>=3.1.3,<4",
|
|
45
|
-
"matplotlib>=3.8.3,<4",
|
|
46
|
-
"networkx>=3.4.2,<4",
|
|
47
|
-
"lancedb>=0.24.0,<1.0.0",
|
|
48
|
-
"alembic>=1.13.3,<2",
|
|
49
|
-
"pre-commit>=4.0.1,<5",
|
|
50
|
-
"scikit-learn>=1.6.1,<2",
|
|
51
|
-
"limits>=4.4.1,<5",
|
|
52
|
-
"fastapi>=0.115.7,<1.0.0",
|
|
53
|
-
"python-multipart>=0.0.20,<1.0.0",
|
|
54
|
-
"fastapi-users[sqlalchemy]>=14.0.1,<15.0.0",
|
|
55
|
-
"dlt[sqlalchemy]>=1.9.0,<2",
|
|
56
|
-
"sentry-sdk[fastapi]>=2.9.0,<3",
|
|
57
|
-
"structlog>=25.2.0,<26",
|
|
58
|
-
"pympler>=1.1,<2.0.0",
|
|
59
|
-
"onnxruntime>=1.0.0,<2.0.0",
|
|
60
|
-
"pylance>=0.22.0,<1.0.0",
|
|
61
|
-
"kuzu (==0.11.0)"
|
|
62
|
-
]
|
|
63
|
-
|
|
64
|
-
[project.optional-dependencies]
|
|
65
|
-
api = [
|
|
66
|
-
"uvicorn>=0.34.0,<1.0.0",
|
|
67
|
-
"gunicorn>=20.1.0,<24",
|
|
68
|
-
"websockets>=15.0.1,<16.0.0"
|
|
69
|
-
]
|
|
70
|
-
distributed = [
|
|
71
|
-
"modal>=1.0.5,<2.0.0",
|
|
72
|
-
]
|
|
73
|
-
|
|
74
|
-
neo4j = ["neo4j>=5.28.0,<6"]
|
|
75
|
-
postgres = [
|
|
76
|
-
"psycopg2>=2.9.10,<3",
|
|
77
|
-
"pgvector>=0.3.5,<0.4",
|
|
78
|
-
"asyncpg>=0.30.0,<1.0.0",
|
|
79
|
-
]
|
|
80
|
-
postgres-binary = [
|
|
81
|
-
"psycopg2-binary>=2.9.10,<3.0.0",
|
|
82
|
-
"pgvector>=0.3.5,<0.4",
|
|
83
|
-
"asyncpg>=0.30.0,<1.0.0",
|
|
84
|
-
]
|
|
85
|
-
notebook = ["notebook>=7.1.0,<8"]
|
|
86
|
-
langchain = [
|
|
87
|
-
"langsmith>=0.2.3,<1.0.0",
|
|
88
|
-
"langchain_text_splitters>=0.3.2,<1.0.0",
|
|
89
|
-
]
|
|
90
|
-
llama-index = ["llama-index-core>=0.12.11,<0.13"]
|
|
91
|
-
gemini = ["google-generativeai>=0.8.4,<0.9"]
|
|
92
|
-
huggingface = ["transformers>=4.46.3,<5"]
|
|
93
|
-
ollama = ["transformers>=4.46.3,<5"]
|
|
94
|
-
mistral = ["mistral-common>=1.5.2,<2"]
|
|
95
|
-
anthropic = ["anthropic>=0.26.1,<0.27"]
|
|
96
|
-
deepeval = ["deepeval>=2.0.1,<3"]
|
|
97
|
-
posthog = ["posthog>=3.5.0,<4"]
|
|
98
|
-
groq = ["groq>=0.8.0,<1.0.0"]
|
|
99
|
-
chromadb = [
|
|
100
|
-
"chromadb>=0.3.0,<0.7",
|
|
101
|
-
"pypika==0.48.8",
|
|
102
|
-
]
|
|
103
|
-
docs = ["unstructured[csv, doc, docx, epub, md, odt, org, ppt, pptx, rst, rtf, tsv, xlsx]>=0.18.1,<19"]
|
|
104
|
-
codegraph = [
|
|
105
|
-
"fastembed<=0.6.0 ; python_version < '3.13'",
|
|
106
|
-
"transformers>=4.46.3,<5",
|
|
107
|
-
"tree-sitter>=0.24.0,<0.25",
|
|
108
|
-
"tree-sitter-python>=0.23.6,<0.24",
|
|
109
|
-
]
|
|
110
|
-
evals = [
|
|
111
|
-
"plotly>=6.0.0,<7",
|
|
112
|
-
"gdown>=5.2.0,<6",
|
|
113
|
-
]
|
|
114
|
-
gui = [
|
|
115
|
-
"pyside6>=6.8.3,<7",
|
|
116
|
-
"qasync>=0.27.1,<0.28",
|
|
117
|
-
]
|
|
118
|
-
graphiti = ["graphiti-core>=0.7.0,<0.8"]
|
|
119
|
-
# Note: New s3fs and boto3 versions don't work well together
|
|
120
|
-
# Always use comaptible fixed versions of these two dependencies
|
|
121
|
-
aws = ["s3fs[boto3]==2025.3.2"]
|
|
122
|
-
dev = [
|
|
123
|
-
"pytest>=7.4.0,<8",
|
|
124
|
-
"pytest-cov>=6.1.1,<7.0.0",
|
|
125
|
-
"pytest-asyncio>=0.21.1,<0.22",
|
|
126
|
-
"coverage>=7.3.2,<8",
|
|
127
|
-
"mypy>=1.7.1,<2",
|
|
128
|
-
"notebook>=7.1.0,<8",
|
|
129
|
-
"deptry>=0.20.0,<0.21",
|
|
130
|
-
"pylint>=3.0.3,<4",
|
|
131
|
-
"ruff>=0.9.2,<1.0.0",
|
|
132
|
-
"tweepy>=4.14.0,<5.0.0",
|
|
133
|
-
"gitpython>=3.1.43,<4",
|
|
134
|
-
"mkdocs-material>=9.5.42,<10",
|
|
135
|
-
"mkdocs-minify-plugin>=0.8.0,<0.9",
|
|
136
|
-
"mkdocstrings[python]>=0.26.2,<0.27",
|
|
137
|
-
]
|
|
138
|
-
debug = ["debugpy>=1.8.9,<2.0.0"]
|
|
139
|
-
|
|
140
|
-
[project.urls]
|
|
141
|
-
Homepage = "https://www.cognee.ai"
|
|
142
|
-
Repository = "https://github.com/topoteretes/cognee"
|
|
143
|
-
|
|
144
|
-
[build-system]
|
|
145
|
-
requires = ["hatchling"]
|
|
146
|
-
build-backend = "hatchling.build"
|
|
147
|
-
|
|
148
|
-
[tool.hatch.build]
|
|
149
|
-
exclude = [
|
|
150
|
-
"/bin",
|
|
151
|
-
"/dist",
|
|
152
|
-
"/.data",
|
|
153
|
-
"/.github",
|
|
154
|
-
"/alembic",
|
|
155
|
-
"/deployment",
|
|
156
|
-
"/cognee-mcp",
|
|
157
|
-
"/cognee-frontend",
|
|
158
|
-
"/examples",
|
|
159
|
-
"/helm",
|
|
160
|
-
"/licenses",
|
|
161
|
-
"/logs",
|
|
162
|
-
"/notebooks",
|
|
163
|
-
"/profiling",
|
|
164
|
-
"/tests",
|
|
165
|
-
"/tools",
|
|
166
|
-
]
|
|
167
|
-
|
|
168
|
-
[tool.hatch.build.targets.wheel]
|
|
169
|
-
packages = ["cognee", "distributed"]
|
|
170
|
-
|
|
171
|
-
[tool.ruff]
|
|
172
|
-
line-length = 100
|
|
173
|
-
exclude = [
|
|
174
|
-
"migrations/", # Ignore migrations directory
|
|
175
|
-
"notebooks/", # Ignore notebook files
|
|
176
|
-
"build/", # Ignore build directory
|
|
177
|
-
"cognee/pipelines.py",
|
|
178
|
-
"cognee/modules/users/models/Group.py",
|
|
179
|
-
"cognee/modules/users/models/ACL.py",
|
|
180
|
-
"cognee/modules/pipelines/models/Task.py",
|
|
181
|
-
"cognee/modules/data/models/Dataset.py"
|
|
182
|
-
]
|
|
183
|
-
|
|
184
|
-
[tool.ruff.lint]
|
|
185
|
-
ignore = ["F401"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|