From af57524cb9c6854db253fa3e332a5c5533b2d907 Mon Sep 17 00:00:00 2001 From: Carlos Cordoba Date: Sun, 15 May 2022 11:22:03 -0500 Subject: [PATCH] Drop support for Python 3.6 Also, add license info to pyproject.toml --- README.md | 2 +- pyproject.toml | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6d89a75..1327018 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Python JSON RPC Server -A Python 3.6+ server implementation of the [JSON RPC 2.0](http://www.jsonrpc.org/specification) protocol. This library has been pulled out of the [Python LSP Server](https://github.com/python-lsp/python-lsp-server) project. +A Python 3.7+ server implementation of the [JSON RPC 2.0](http://www.jsonrpc.org/specification) protocol. This library has been pulled out of the [Python LSP Server](https://github.com/python-lsp/python-lsp-server) project. ## Installation diff --git a/pyproject.toml b/pyproject.toml index ec4fd33..37487b5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,6 +9,8 @@ build-backend = "setuptools.build_meta" name = "python-lsp-jsonrpc" authors = [{name = "Python Language Server Contributors"}] description = "JSON RPC 2.0 server library" +license = {text = "MIT"} +requires-python = ">=3.7" dependencies = ["ujson>=3.0.0"] dynamic = ["version"] @@ -30,6 +32,7 @@ test = [ ] [tool.setuptools] +license-files = ["LICENSE"] include-package-data = false [tool.setuptools.packages.find]