django-language-server/packages/djls-server/pyproject.toml
Josh Thomas 757a400a8a
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
adopt DjangoVer (#41)
* 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
2024-12-16 12:10:10 -06:00

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