From 8ef35fa58842c5ccac7d69fb5dfb20849d7cdc86 Mon Sep 17 00:00:00 2001 From: Szymon Szyszkowski Date: Tue, 13 Aug 2024 16:19:45 +0100 Subject: [PATCH] chore: added project description and classifiers --- pyproject.toml | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6680fcc..ea32718 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,10 +1,8 @@ [project] +authors = [{ name = "Szymon Szyszkowski", email = "ss60@sanger.ac.uk" }] name = "gentroutils" version = "0.0.0" -description = "Add your description here" -authors = [ - { name = "Szymon Szyszkowski", email = "ss60@mib117351s.internal.sanger.ac.uk" }, -] +description = "Open Targets python genetics utility CLI tools" dependencies = [ "click>=8.1.7", "google-cloud-storage>=2.18.1", @@ -13,6 +11,19 @@ dependencies = [ ] readme = "README.md" requires-python = ">= 3.10" +license = "Apache-2.0" +documentation = "https://github.com/opentargets/gentroutils" +repository = "https://github.com/opentargets/gentroutils" +classifiers = [ + "Development Status :: 3 - Alpha", + "Intended Audience :: Healthcare Industry", + "Intended Audience :: Science/Research", + "Topic :: Scientific/Engineering :: Bio-Informatics", + "Operating System :: Unix", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.10", + "License :: OSI Approved :: Apache Software License", +] [build-system] requires = ["hatchling"] @@ -80,6 +91,8 @@ ignore = [ ] +# add classifiers + [tool.ruff.lint.per-file-ignores] "__init__.py" = ["E402"]