diff --git a/README.md b/README.md index 47ab156..4c9bb8a 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # SPINAsm LSP Server [![Build status](https://github.com/aazuspan/spinasm-lsp/actions/workflows/ci.yaml/badge.svg)](https://github.com/aazuspan/spinasm-lsp/actions/workflows/ci.yaml) -[![PyPI version](https://badge.fury.io/py/spinasm-lsp.svg)](https://badge.fury.io/py/spinasm-lsp) +[![PyPI version](https://img.shields.io/pypi/v/spinasm-lsp)](https://pypi.python.org/pypi/spinasm-lsp) [![Python versions](https://img.shields.io/pypi/pyversions/spinasm-lsp.svg)](https://pypi.python.org/pypi/spinasm-lsp) A Language Server Protocol (LSP) server to provide language support for the [SPINAsm assembly language](http://www.spinsemi.com/Products/datasheets/spn1001-dev/SPINAsmUserManual.pdf). The LSP is built on an extended version of the [asfv1](https://github.com/ndf-zz/asfv1) parser. diff --git a/pyproject.toml b/pyproject.toml index c643b99..7e13dbb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,12 +8,23 @@ dynamic = [ "version",] description = "A Language Server Protocol implementation for SPINAsm" readme = "README.md" requires-python = ">=3.8" -keywords = [] +keywords = ["spinasm", "lsp"] +classifiers = [ + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "License :: OSI Approved :: MIT License", + "Typing :: Typed", +] + dependencies = [ "pygls", "lsprotocol", "asfv1==1.2.7", ] + [[project.authors]] name = "Aaron Zuspan"