rename server bin package

This commit is contained in:
Josh Thomas 2024-12-16 07:25:58 -06:00
parent 97db9143ae
commit 8e2a60dc8a
5 changed files with 11 additions and 11 deletions

View file

@ -0,0 +1 @@
# djls-server

View file

@ -0,0 +1,25 @@
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "djls-server"
version = "0.1.0"
description = "Binary distribution package for the Django Language Server"
readme = "README.md"
authors = [
{ name = "Josh Thomas", email = "josh@joshthomas.dev" }
]
requires-python = ">=3.9"
dependencies = []
[tool.maturin]
bindings = "bin"
manifest-path = "../../crates/djls/Cargo.toml"
module-name = "djls"
strip = true
include = [
{ path = "../../rust-toolchain.toml", format = ["sdist", "wheel"] },
{ path = "../../proto/**/*", format = ["sdist", "wheel"] },
{ path = "../../LICENSE", format = "sdist" },
]