-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (69 loc) · 1.84 KB
/
Copy pathpyproject.toml
File metadata and controls
74 lines (69 loc) · 1.84 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "schemap-tool"
version = "3.2.0"
description = "The AI Database Context Compiler for Claude Code, Cursor, Codex, and Copilot. Turn raw database structures into compact, AI-ready context maps."
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "Swarty", email = "ramrunner13@gmail.com" }
]
keywords = [
"database",
"ai",
"schemap",
"claude",
"cursor",
"copilot",
"context-window",
"token-optimization",
"text-to-sql",
"mcp-server",
"langchain-tools",
"schema-linter"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Topic :: Database",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
requires-python = ">=3.10"
dependencies = [
"click>=8.1.0",
"pydantic>=2.6.0",
"jinja2>=3.1.0",
"psycopg[binary]>=3.1.0",
"pyyaml>=6.0.0",
"libsql",
"tiktoken>=0.6.0",
"watchdog>=4.0.0",
"pymysql",
"oracledb"
]
[project.urls]
Homepage = "https://schemap-tool.pages.dev/"
Documentation = "https://schemap-tool.pages.dev/#features"
Repository = "https://github.com/alansyahmi/Schemap"
Changelog = "https://github.com/alansyahmi/Schemap/releases"
"Bug Tracker" = "https://github.com/alansyahmi/Schemap/issues"
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-mock>=3.10.0"
]
enrich = [
"openai>=1.14.0"
]
[project.scripts]
schemap = "schemap.cli:cli"
[tool.hatch.build.targets.wheel]
packages = ["schemap"]