From e9702c1136f0426d058e28d98768fbfa1bfd159d Mon Sep 17 00:00:00 2001 From: Alessandro Candido Date: Fri, 9 Feb 2024 03:13:22 +0100 Subject: [PATCH] build: Standardize metadata --- pyproject.toml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 66bed8f..b4124da 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,9 +5,19 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "qibotn" version = "0.0.1" -description = "" -authors = ["Qibo Team"] +description = "A tensor-network translation module for Qibo" +authors = ["The Qibo team"] +license = "Apache License 2.0" readme = "README.md" +homepage = "https://qibo.science/" +repository = "https://github.com/qiboteam/qibotn/" +documentation = "https://qibo.science/docs/qibotn/stable" +keywords = [] +classifiers = [ + "Programming Language :: Python :: 3", + "Topic :: Scientific/Engineering :: Physics", +] +packages = [{ include = "qibotn", from = "src" }] [tool.poetry.dependencies] python = "^3.9,<3.12"