mirror of
https://github.com/joshuadavidthomas/django-language-server.git
synced 2025-10-02 22:55:11 +00:00
25 lines
644 B
TOML
25 lines
644 B
TOML
[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 = "../../rust-toolchain.toml", format = ["sdist", "wheel"] },
|
|
{ path = "../../proto/**/*", format = ["sdist", "wheel"] },
|
|
{ path = "../../LICENSE", format = "sdist" },
|
|
]
|