From e2c51a0d2377768f5ba17b18f87cdda5f8a41b9f Mon Sep 17 00:00:00 2001 From: straydragon Date: Sun, 29 Sep 2024 15:39:27 +0800 Subject: [PATCH] fix: pypi missing desc --- CHANGELOG.md | 0 README.md | 2 +- pyproject.toml | 22 +++++++++++++++++++++- 3 files changed, 22 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..e69de29 diff --git a/README.md b/README.md index 30b702d..a2853e1 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # oapi-sdk-python-compact ![PyPI - Version](https://img.shields.io/pypi/v/lark-oapi-compact) -[![image](https://img.shields.io/pypi/pyversions/uv.svg)](https://pypi.python.org/pypi/lark-oapi-compact) +[![image](https://img.shields.io/pypi/pyversions/lark-oapi-compact.svg)](https://pypi.python.org/pypi/lark-oapi-compact) [![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v0.json)](https://github.com/charliermarsh/ruff) [![uv](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/uv/main/assets/badge/v0.json)](https://github.com/astral-sh/uv) diff --git a/pyproject.toml b/pyproject.toml index 6bbee42..4ac9f13 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,11 +1,31 @@ [project] name = "lark-oapi-compact" -version = "0.1.1" +version = "0.1.2" description = "Lark OpenAPI SDK for Python" authors = [{ name = "L8ng", email = "straydragonl@foxmail.com" }] readme = "README.md" requires-python = ">=3.7" license = { text = "MIT" } +keywords = [ + "feishu", + "lark", +] +# https://pypi.org/classifiers/ +classifiers = [ + "Development Status :: 4 - Beta", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3 :: Only", + "Topic :: Software Development :: Libraries :: Python Modules", +] + +[project.urls] +Repository = "https://github.com/StrayDragon/oapi-sdk-python-compact" +Documentation = "https://github.com/StrayDragon/oapi-sdk-python-compact/blob/main/README.md" +Changelog = "https://github.com/StrayDragon/oapi-sdk-python-compact/blob/main/CHANGELOG.md" + dependencies = [ # Upstream/v2_main https://github.com/larksuite/oapi-sdk-python "lark-oapi==1.3.4",