mirror of
https://github.com/joshuadavidthomas/django-language-server.git
synced 2025-08-04 18:18:14 +00:00
* adopt DjangoVer * add section to readme detailing djangover * add subsection about breaking changes * adjust requirements to reference new section * tweak wording * more tweaking * wording and stylistic tweaks * bump uv lock * add metadata for version info * add initial bumpver config * add utility just command * change version pattern
38 lines
1 KiB
TOML
38 lines
1 KiB
TOML
[build-system]
|
|
requires = ["maturin>=1.0,<2.0"]
|
|
build-backend = "maturin"
|
|
|
|
[project]
|
|
name = "djls-server"
|
|
version = "5.1.0a0"
|
|
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 = []
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Framework :: Django",
|
|
"Framework :: Django :: 4.2",
|
|
"Framework :: Django :: 5.0",
|
|
"Framework :: Django :: 5.1",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Rust",
|
|
"Topic :: Software Development",
|
|
"Topic :: Text Editors :: Integrated Development Environments (IDE)"
|
|
]
|
|
|
|
[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" },
|
|
{ path = "rust-toolchain.toml", format = ["sdist", "wheel"] },
|
|
]
|