schema-search 0.1.2__tar.gz → 0.1.5__tar.gz

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.

Potentially problematic release.


This version of schema-search might be problematic. Click here for more details.

Files changed (46) hide show
  1. {schema_search-0.1.2/schema_search.egg-info → schema_search-0.1.5}/PKG-INFO +4 -6
  2. {schema_search-0.1.2 → schema_search-0.1.5}/README.md +2 -2
  3. {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/mcp_server.py +1 -1
  4. {schema_search-0.1.2 → schema_search-0.1.5/schema_search.egg-info}/PKG-INFO +4 -6
  5. schema_search-0.1.5/schema_search.egg-info/entry_points.txt +2 -0
  6. {schema_search-0.1.2 → schema_search-0.1.5}/setup.py +3 -5
  7. schema_search-0.1.2/schema_search.egg-info/entry_points.txt +0 -2
  8. {schema_search-0.1.2 → schema_search-0.1.5}/LICENSE +0 -0
  9. {schema_search-0.1.2 → schema_search-0.1.5}/MANIFEST.in +0 -0
  10. {schema_search-0.1.2 → schema_search-0.1.5}/config.yml +0 -0
  11. {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/__init__.py +0 -0
  12. {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/chunkers/__init__.py +0 -0
  13. {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/chunkers/base.py +0 -0
  14. {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/chunkers/factory.py +0 -0
  15. {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/chunkers/llm.py +0 -0
  16. {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/chunkers/markdown.py +0 -0
  17. {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/embedding_cache/__init__.py +0 -0
  18. {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/embedding_cache/base.py +0 -0
  19. {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/embedding_cache/bm25.py +0 -0
  20. {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/embedding_cache/factory.py +0 -0
  21. {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/embedding_cache/inmemory.py +0 -0
  22. {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/graph_builder.py +0 -0
  23. {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/metrics.py +0 -0
  24. {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/rankers/__init__.py +0 -0
  25. {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/rankers/base.py +0 -0
  26. {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/rankers/cross_encoder.py +0 -0
  27. {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/rankers/factory.py +0 -0
  28. {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/schema_extractor.py +0 -0
  29. {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/schema_search.py +0 -0
  30. {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/search/__init__.py +0 -0
  31. {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/search/base.py +0 -0
  32. {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/search/bm25.py +0 -0
  33. {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/search/factory.py +0 -0
  34. {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/search/fuzzy.py +0 -0
  35. {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/search/hybrid.py +0 -0
  36. {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/search/semantic.py +0 -0
  37. {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/types.py +0 -0
  38. {schema_search-0.1.2 → schema_search-0.1.5}/schema_search.egg-info/SOURCES.txt +0 -0
  39. {schema_search-0.1.2 → schema_search-0.1.5}/schema_search.egg-info/dependency_links.txt +0 -0
  40. {schema_search-0.1.2 → schema_search-0.1.5}/schema_search.egg-info/requires.txt +0 -0
  41. {schema_search-0.1.2 → schema_search-0.1.5}/schema_search.egg-info/top_level.txt +0 -0
  42. {schema_search-0.1.2 → schema_search-0.1.5}/setup.cfg +0 -0
  43. {schema_search-0.1.2 → schema_search-0.1.5}/tests/__init__.py +0 -0
  44. {schema_search-0.1.2 → schema_search-0.1.5}/tests/test_integration.py +0 -0
  45. {schema_search-0.1.2 → schema_search-0.1.5}/tests/test_llm_sql_generation.py +0 -0
  46. {schema_search-0.1.2 → schema_search-0.1.5}/tests/test_spider_eval.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: schema-search
3
- Version: 0.1.2
3
+ Version: 0.1.5
4
4
  Summary: Natural language search for database schemas with graph-aware semantic retrieval
5
5
  Home-page: https://github.com/neehan/schema-search
6
6
  Author:
@@ -8,11 +8,9 @@ Classifier: Development Status :: 3 - Alpha
8
8
  Classifier: Intended Audience :: Developers
9
9
  Classifier: License :: OSI Approved :: MIT License
10
10
  Classifier: Programming Language :: Python :: 3
11
- Classifier: Programming Language :: Python :: 3.8
12
- Classifier: Programming Language :: Python :: 3.9
13
11
  Classifier: Programming Language :: Python :: 3.10
14
12
  Classifier: Programming Language :: Python :: 3.11
15
- Requires-Python: >=3.8
13
+ Requires-Python: >=3.10
16
14
  Description-Content-Type: text/markdown
17
15
  License-File: LICENSE
18
16
  Requires-Dist: sqlalchemy>=1.4.0
@@ -109,7 +107,7 @@ Add to your MCP config (e.g., `~/.cursor/mcp.json` or Claude Desktop config):
109
107
  {
110
108
  "mcpServers": {
111
109
  "schema-search": {
112
- "command": "path/to/schema-search-mcp", // conda: /Users/<username>/opt/miniconda3/envs/<your env>/bin/schema-search-mcp",
110
+ "command": "path/to/schema-search", // conda: /Users/<username>/opt/miniconda3/envs/<your env>/bin/schema-search",
113
111
  "args": ["postgresql://user:pass@localhost/db", "optional config.yml path", "optional llm_api_key", "optional llm_base_url"]
114
112
  }
115
113
  }
@@ -122,7 +120,7 @@ The LLM API key and base url are only required if you use LLM-generated schema s
122
120
  ### CLI Usage
123
121
 
124
122
  ```bash
125
- schema-search-mcp "postgresql://user:pass@localhost/db"
123
+ schema-search "postgresql://user:pass@localhost/db"
126
124
  ```
127
125
 
128
126
  Optional args: `[config_path] [llm_api_key] [llm_base_url]`
@@ -57,7 +57,7 @@ Add to your MCP config (e.g., `~/.cursor/mcp.json` or Claude Desktop config):
57
57
  {
58
58
  "mcpServers": {
59
59
  "schema-search": {
60
- "command": "path/to/schema-search-mcp", // conda: /Users/<username>/opt/miniconda3/envs/<your env>/bin/schema-search-mcp",
60
+ "command": "path/to/schema-search", // conda: /Users/<username>/opt/miniconda3/envs/<your env>/bin/schema-search",
61
61
  "args": ["postgresql://user:pass@localhost/db", "optional config.yml path", "optional llm_api_key", "optional llm_base_url"]
62
62
  }
63
63
  }
@@ -70,7 +70,7 @@ The LLM API key and base url are only required if you use LLM-generated schema s
70
70
  ### CLI Usage
71
71
 
72
72
  ```bash
73
- schema-search-mcp "postgresql://user:pass@localhost/db"
73
+ schema-search "postgresql://user:pass@localhost/db"
74
74
  ```
75
75
 
76
76
  Optional args: `[config_path] [llm_api_key] [llm_base_url]`
@@ -66,7 +66,7 @@ def main():
66
66
 
67
67
  if len(sys.argv) < 2:
68
68
  print(
69
- "Usage: schema-search-mcp <database_url> [config_path] [llm_api_key] [llm_base_url]"
69
+ "Usage: schema-search <database_url> [config_path] [llm_api_key] [llm_base_url]"
70
70
  )
71
71
  sys.exit(1)
72
72
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: schema-search
3
- Version: 0.1.2
3
+ Version: 0.1.5
4
4
  Summary: Natural language search for database schemas with graph-aware semantic retrieval
5
5
  Home-page: https://github.com/neehan/schema-search
6
6
  Author:
@@ -8,11 +8,9 @@ Classifier: Development Status :: 3 - Alpha
8
8
  Classifier: Intended Audience :: Developers
9
9
  Classifier: License :: OSI Approved :: MIT License
10
10
  Classifier: Programming Language :: Python :: 3
11
- Classifier: Programming Language :: Python :: 3.8
12
- Classifier: Programming Language :: Python :: 3.9
13
11
  Classifier: Programming Language :: Python :: 3.10
14
12
  Classifier: Programming Language :: Python :: 3.11
15
- Requires-Python: >=3.8
13
+ Requires-Python: >=3.10
16
14
  Description-Content-Type: text/markdown
17
15
  License-File: LICENSE
18
16
  Requires-Dist: sqlalchemy>=1.4.0
@@ -109,7 +107,7 @@ Add to your MCP config (e.g., `~/.cursor/mcp.json` or Claude Desktop config):
109
107
  {
110
108
  "mcpServers": {
111
109
  "schema-search": {
112
- "command": "path/to/schema-search-mcp", // conda: /Users/<username>/opt/miniconda3/envs/<your env>/bin/schema-search-mcp",
110
+ "command": "path/to/schema-search", // conda: /Users/<username>/opt/miniconda3/envs/<your env>/bin/schema-search",
113
111
  "args": ["postgresql://user:pass@localhost/db", "optional config.yml path", "optional llm_api_key", "optional llm_base_url"]
114
112
  }
115
113
  }
@@ -122,7 +120,7 @@ The LLM API key and base url are only required if you use LLM-generated schema s
122
120
  ### CLI Usage
123
121
 
124
122
  ```bash
125
- schema-search-mcp "postgresql://user:pass@localhost/db"
123
+ schema-search "postgresql://user:pass@localhost/db"
126
124
  ```
127
125
 
128
126
  Optional args: `[config_path] [llm_api_key] [llm_base_url]`
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ schema-search = schema_search.mcp_server:main
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="schema-search",
5
- version="0.1.2",
5
+ version="0.1.5",
6
6
  description="Natural language search for database schemas with graph-aware semantic retrieval",
7
7
  author="",
8
8
  long_description=open("README.md").read(),
@@ -46,17 +46,15 @@ setup(
46
46
  },
47
47
  entry_points={
48
48
  "console_scripts": [
49
- "schema-search-mcp=schema_search.mcp_server:main",
49
+ "schema-search=schema_search.mcp_server:main",
50
50
  ],
51
51
  },
52
- python_requires=">=3.8",
52
+ python_requires=">=3.10",
53
53
  classifiers=[
54
54
  "Development Status :: 3 - Alpha",
55
55
  "Intended Audience :: Developers",
56
56
  "License :: OSI Approved :: MIT License",
57
57
  "Programming Language :: Python :: 3",
58
- "Programming Language :: Python :: 3.8",
59
- "Programming Language :: Python :: 3.9",
60
58
  "Programming Language :: Python :: 3.10",
61
59
  "Programming Language :: Python :: 3.11",
62
60
  ],
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- schema-search-mcp = schema_search.mcp_server:main
File without changes
File without changes
File without changes
File without changes