From 4f1c2c860c398fa7e87e76f928be7c62be1ec4ca Mon Sep 17 00:00:00 2001 From: Hugo Cachitas Date: Wed, 3 Apr 2024 01:21:12 +0100 Subject: [PATCH] Update pyproject.toml --- pyproject.toml | 33 ++++++++++++++++++++++++++++----- 1 file changed, 28 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d39e510..9289511 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,20 +1,43 @@ +[build-system] +requires = ["pdm-backend"] +build-backend = "pdm.backend" + [project] name = "stringx" -description = "STRING API client" +description = "STRING DB API Client" authors = [{ name = "Hugo Cachitas", email = "hcachitas@gmail.com" }] dependencies = ["httpx>=0.27.0"] requires-python = ">=3.9" readme = "README.md" +keywords = [ + "string", "api", "client", "httpx", + "sib", "cpr", "embl", "biodata", "elixir", + "protein", "gene", "interaction", +] +classifiers = [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: Education", + "Intended Audience :: Healthcare Industry", + "Intended Audience :: Science/Research", + "Topic :: Software Development :: Build Tools", + "License :: OSI Approved :: MIT License", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Topic :: Scientific/Engineering", + "Topic :: Scientific/Engineering :: Bio-Informatics", + "Typing :: Typed", +] license = { text = "MIT" } dynamic = ["version"] [project.urls] Homepage = "https://pypi.org/project/stringx" Repository = "https://github.com/cachitas/stringx" - -[build-system] -requires = ["pdm-backend"] -build-backend = "pdm.backend" +Issues = "https://github.com/cachitas/stringx/issues" [tool.pdm.dev-dependencies] dev = ["pytest>=8.1.1", "pytest-httpx>=0.30.0"]