From 7be0215329d5da444b737a84cd3645e0ddd5a32b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Coelho?= <16445494+jcoelho93@users.noreply.github.com> Date: Wed, 1 May 2024 09:42:29 +0100 Subject: [PATCH] Add extra config --- pyproject.toml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 4fa2452..c85c11f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,6 +4,17 @@ version = "2.0.0" description = "An unofficial client for the official Trading212 API" authors = ["José Coelho <16445494+jcoelho93@users.noreply.github.com>"] readme = "README.md" +license = "MIT" +homepage = "https://github.com/jcoelho93/python-trading212" +repository = "https://github.com/jcoelho93/python-trading212" +documentation = "https://github.com/jcoelho93/python-trading212" +keywords = ["python", "trading212", "api", "client", "unofficial", "finance", "stocks", "trading"] +classifiers = [ + "Framework :: Pydantic", + "License :: OSI Approved :: MIT License", + "Programming Language :: Python :: 3.12", + "Topic :: Office/Business :: Financial :: Investment" +] packages = [ { include = "trading212", from = "." } ] @@ -19,3 +30,6 @@ flake8 = "^7.0.0" [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api" + +[tool.poetry.urls] +"Bug Tracker" = "https://github.com/jcoelho93/python-trading212/issues"