mirror of
https://github.com/joshuadavidthomas/django-language-server.git
synced 2025-09-27 12:29:30 +00:00
move djls Python agent code and create new binary workspace package (#34)
closer to this thing being installable
This commit is contained in:
parent
9845c0e861
commit
e7d0cb1245
20 changed files with 62 additions and 42 deletions
0
packages/djls-binary/README.md
Normal file
0
packages/djls-binary/README.md
Normal file
24
packages/djls-binary/pyproject.toml
Normal file
24
packages/djls-binary/pyproject.toml
Normal file
|
@ -0,0 +1,24 @@
|
|||
[build-system]
|
||||
requires = ["maturin>=1.0,<2.0"]
|
||||
build-backend = "maturin"
|
||||
|
||||
[project]
|
||||
name = "djls-binary"
|
||||
version = "0.1.0"
|
||||
description = "Utility Python scripts for 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 = "../../proto/**/*", format = ["sdist", "wheel"] },
|
||||
{ path = "../../LICENSE", format = "sdist" },
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue