django-language-server/packages/djls-binary/pyproject.toml
Josh Thomas 4cf08025bd
Some checks are pending
test / test (macos-latest) (push) Waiting to run
test / test (ubuntu-latest) (push) Waiting to run
test / test (windows-latest) (push) Waiting to run
add rust toolchain config file (#35)
2024-12-15 22:41:51 -06:00

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" },
]