mirror of
https://github.com/joshuadavidthomas/django-language-server.git
synced 2025-09-28 04:45:03 +00:00
rename server bin package
This commit is contained in:
parent
97db9143ae
commit
8e2a60dc8a
5 changed files with 11 additions and 11 deletions
1
packages/djls-server/README.md
Normal file
1
packages/djls-server/README.md
Normal file
|
@ -0,0 +1 @@
|
|||
# djls-server
|
25
packages/djls-server/pyproject.toml
Normal file
25
packages/djls-server/pyproject.toml
Normal 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" },
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue