From 6c870c4fb509322d316787dfbf3a71187aa103ff Mon Sep 17 00:00:00 2001 From: Jon Bringhurst Date: Tue, 24 Jan 2023 15:06:17 -0800 Subject: [PATCH] Add license metadata for pypi --- pyproject.toml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c745249e3d..65fe55ff7d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,11 @@ +[project] +license = {file = "LICENSE"} +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", +] + [tool.black] target-version = ['py36'] exclude = '.*\.ipynb' @@ -6,4 +14,4 @@ exclude = '.*\.ipynb' py_version = 36 include_trailing_comma = "true" line_length = 88 -multi_line_output = 3 \ No newline at end of file +multi_line_output = 3