-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpyproject.toml
More file actions
98 lines (88 loc) · 2.44 KB
/
pyproject.toml
File metadata and controls
98 lines (88 loc) · 2.44 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
87
88
89
90
91
92
93
94
95
96
97
98
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "intugle"
version = "1.0.5"
authors = [
{ name="Intugle", email="hello@intugle.ai" },
]
description = "A GenAI-powered Python library for building semantic layers."
readme = "README.md"
keywords = ["data", "semantic layer", "genai", "llm", "data profiling", "link prediction", "sql generation"]
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
"langchain-community>=0.3.21",
"langchain-openai>=0.3.28",
"langgraph>=0.6.4",
"nltk>=3.9.1",
"numpy<=2.3.0",
"asyncpg>=0.30.0",
"fastapi[standard]>=0.116.1",
"matplotlib>=3.10.5",
"mcp[cli]>=1.12.4",
"networkx>=3.4.2",
"pandas>=2.2.2",
"pyaml>=25.7.0",
"pydantic>=2.11.7",
"pydantic-settings>=2.10.1",
"pyfunctional>=1.5.0",
"python-dotenv>=1.1.1",
"symspellpy>=6.9.0",
"trieregex>=1.0.0",
"xgboost>=3.0.4",
"pyyaml>=6.0.2",
"duckdb>=1.3.2",
"scikit-learn==1.7.1",
"langchain[anthropic,google-genai,openai]>=0.3.27",
"qdrant-client>=1.15.1",
"rich>=14.1.0",
"aiohttp>=3.9.5",
]
[project.optional-dependencies]
snowflake = [
"snowflake-snowpark-python[pandas]>=1.12.0"
]
databricks = [
"databricks-sql-connector>=4.1.3",
"pyspark>=3.5.0",
"sqlglot>=27.20.0",
]
[project.urls]
"Homepage" = "https://github.com/Intugle/data-tools"
"Bug Tracker" = "https://github.com/Intugle/data-tools/issues"
[project.scripts]
intugle-mcp = "intugle.mcp.server:main"
intugle-streamlit = "intugle.cli:export_data"
[dependency-groups]
test = [
"langchain-core>=0.3.74",
"langchain-mcp-adapters>=0.1.9",
"pytest",
"pytest-asyncio>=1.1.0",
]
lint = ["ruff"]
dev = [
"ipykernel>=6.30.1",
"pytest>=8.4.1",
"pytest-asyncio>=1.1.0",
"pytest-cov>=6.2.1",
"twine>=6.1.0",
]
[tool.ruff]
src = ["src"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"intugle" = ["**/*.yaml", "**/*.txt", "**/*.pkl", "mcp/semantic_layer/prompts/*.md"]