remove faux-root workspace

This commit is contained in:
Josh Thomas 2024-12-23 10:15:18 -06:00
parent e0603a4e17
commit 074d449d1e
2 changed files with 0 additions and 17 deletions

View file

@ -1,9 +0,0 @@
# django-language-server Workspace
This is an empty Python package that exists solely to satisfy Hatch's package requirements while using [uv workspaces](https://docs.astral.sh/uv/concepts/projects/workspaces/).
The actual packages are located in:
- [`crates/`](../crates/) - Rust implementation of the LSP server
- [`packages/djls-agent/`](../packages/djls-agent/) - Django introspection agent
- [`packages/djls-server/`](../packages/djls-server/) - Python package that distributes the LSP server binary

View file

@ -1,8 +0,0 @@
from __future__ import annotations
import importlib.metadata
try:
__version__ = importlib.metadata.version(__name__)
except importlib.metadata.PackageNotFoundError:
__version__ = "0.0.0"