From 7892fa5ac2cc7a05623282844dd18247101420ac Mon Sep 17 00:00:00 2001 From: Niko Abeler Date: Tue, 22 Nov 2022 22:25:49 +0100 Subject: [PATCH] pyproject filled --- pyproject.toml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 7e4a9a6..01c3e0c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,11 +4,21 @@ build-backend = "maturin" [project] name = "graph_force" +description = "A library for embedding graphs in 2D space, using force-directed layouts." +keywords = ["graph", "layout", "force-directed"] +authors = [ { email = "niko@rerere.org", name = "Niko Abeler" } ] +maintainers = [ { email = "niko@rerere.org", name = "Niko Abeler" } ] +readme = "README.md" requires-python = ">=3.7" classifiers = [ "Programming Language :: Rust", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", + "Topic :: Scientific/Engineering :: Visualization", + "License :: OSI Approved :: MIT License", ] +[project.urls] +homepage = "https://git.libove.org/h4kor/graph-force" +repository = "https://git.libove.org/h4kor/graph-force"