fcp-python 0.1.5__tar.gz → 0.1.6__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.
Files changed (44) hide show
  1. {fcp_python-0.1.5 → fcp_python-0.1.6}/.claude-plugin/plugin.json +1 -1
  2. {fcp_python-0.1.5 → fcp_python-0.1.6}/PKG-INFO +1 -1
  3. {fcp_python-0.1.5 → fcp_python-0.1.6}/pyproject.toml +1 -1
  4. {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/main.py +6 -4
  5. {fcp_python-0.1.5 → fcp_python-0.1.6}/uv.lock +1 -1
  6. {fcp_python-0.1.5 → fcp_python-0.1.6}/.github/workflows/ci.yml +0 -0
  7. {fcp_python-0.1.5 → fcp_python-0.1.6}/.github/workflows/release.yml +0 -0
  8. {fcp_python-0.1.5 → fcp_python-0.1.6}/.mcp.json +0 -0
  9. {fcp_python-0.1.5 → fcp_python-0.1.6}/CLAUDE.md +0 -0
  10. {fcp_python-0.1.5 → fcp_python-0.1.6}/Makefile +0 -0
  11. {fcp_python-0.1.5 → fcp_python-0.1.6}/README.md +0 -0
  12. {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/__init__.py +0 -0
  13. {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/bridge.py +0 -0
  14. {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/domain/__init__.py +0 -0
  15. {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/domain/format.py +0 -0
  16. {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/domain/model.py +0 -0
  17. {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/domain/mutation.py +0 -0
  18. {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/domain/query.py +0 -0
  19. {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/domain/verbs.py +0 -0
  20. {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/lsp/__init__.py +0 -0
  21. {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/lsp/client.py +0 -0
  22. {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/lsp/lifecycle.py +0 -0
  23. {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/lsp/transport.py +0 -0
  24. {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/lsp/types.py +0 -0
  25. {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/lsp/workspace_edit.py +0 -0
  26. {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/resolver/__init__.py +0 -0
  27. {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/resolver/index.py +0 -0
  28. {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/resolver/pipeline.py +0 -0
  29. {fcp_python-0.1.5 → fcp_python-0.1.6}/src/fcp_python/resolver/selectors.py +0 -0
  30. {fcp_python-0.1.5 → fcp_python-0.1.6}/tests/__init__.py +0 -0
  31. {fcp_python-0.1.5 → fcp_python-0.1.6}/tests/test_bridge.py +0 -0
  32. {fcp_python-0.1.5 → fcp_python-0.1.6}/tests/test_client.py +0 -0
  33. {fcp_python-0.1.5 → fcp_python-0.1.6}/tests/test_format.py +0 -0
  34. {fcp_python-0.1.5 → fcp_python-0.1.6}/tests/test_index.py +0 -0
  35. {fcp_python-0.1.5 → fcp_python-0.1.6}/tests/test_lifecycle.py +0 -0
  36. {fcp_python-0.1.5 → fcp_python-0.1.6}/tests/test_model.py +0 -0
  37. {fcp_python-0.1.5 → fcp_python-0.1.6}/tests/test_mutation.py +0 -0
  38. {fcp_python-0.1.5 → fcp_python-0.1.6}/tests/test_pipeline.py +0 -0
  39. {fcp_python-0.1.5 → fcp_python-0.1.6}/tests/test_query.py +0 -0
  40. {fcp_python-0.1.5 → fcp_python-0.1.6}/tests/test_selectors.py +0 -0
  41. {fcp_python-0.1.5 → fcp_python-0.1.6}/tests/test_transport.py +0 -0
  42. {fcp_python-0.1.5 → fcp_python-0.1.6}/tests/test_types.py +0 -0
  43. {fcp_python-0.1.5 → fcp_python-0.1.6}/tests/test_verbs.py +0 -0
  44. {fcp_python-0.1.5 → fcp_python-0.1.6}/tests/test_workspace_edit.py +0 -0
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "fcp-python",
3
3
  "description": "Query and refactor Python codebases through intent-level commands",
4
- "version": "0.1.5",
4
+ "version": "0.1.6",
5
5
  "license": "MIT",
6
6
  "author": {
7
7
  "name": "Scott Meyer"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fcp-python
3
- Version: 0.1.5
3
+ Version: 0.1.6
4
4
  Summary: Python Code Intelligence FCP — semantic Python code operations for LLMs via pylsp
5
5
  Requires-Python: <3.14,>=3.11
6
6
  Requires-Dist: fastmcp>=3.0
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "fcp-python"
3
- version = "0.1.5"
3
+ version = "0.1.6"
4
4
  description = "Python Code Intelligence FCP — semantic Python code operations for LLMs via pylsp"
5
5
  requires-python = ">=3.11,<3.14"
6
6
  dependencies = [
@@ -26,11 +26,13 @@ from fcp_python.lsp.types import PublishDiagnosticsParams, SymbolInformation
26
26
  from fcp_python.resolver.index import SymbolEntry, SymbolIndex
27
27
 
28
28
  mcp = FastMCP(
29
- "python-fcp",
29
+ "fcp-python",
30
30
  instructions=(
31
- "FCP Python server for querying Python codebases via pylsp. "
32
- "Use python_session to open a workspace, python_query for read-only queries, "
33
- "and python_help for the reference card."
31
+ "FCP Python server for querying and refactoring Python codebases via pylsp. "
32
+ "Use python_session to open a workspace directory containing Python files, "
33
+ "python_query for read-only queries like finding definitions, references, "
34
+ "diagnostics, and symbols, python for refactoring operations, and python_help "
35
+ "for the full verb reference. Start every interaction with python_session."
34
36
  ),
35
37
  )
36
38
 
@@ -386,7 +386,7 @@ wheels = [
386
386
 
387
387
  [[package]]
388
388
  name = "fcp-python"
389
- version = "0.1.5"
389
+ version = "0.1.6"
390
390
  source = { editable = "." }
391
391
  dependencies = [
392
392
  { name = "fastmcp" },
File without changes
File without changes
File without changes
File without changes
File without changes