From 29e9eb7ca812ecc4c9362fa5ffc9ae22c4f69c61 Mon Sep 17 00:00:00 2001 From: Andrew Morgan Date: Tue, 13 May 2025 15:40:01 +0100 Subject: [PATCH] Move `classifiers` under `project` If we're only defining static classifiers, then they should live under `project` instead of `tool.poetry`. --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e4f18698d7..1c6afdbb11 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,6 +7,10 @@ authors = [ ] license = "AGPL-3.0-or-later" readme = "README.rst" +classifiers = [ + "Development Status :: 5 - Production/Stable", + "Topic :: Communications :: Chat", +] dynamic = [ # TODO: Transition our `tool.poetry.dependencies` section to # `project.dependencies`. @@ -134,10 +138,6 @@ manifest-path = "rust/Cargo.toml" module-name = "synapse.synapse_rust" [tool.poetry] -classifiers = [ - "Development Status :: 5 - Production/Stable", - "Topic :: Communications :: Chat", -] packages = [ { include = "synapse" }, ]