From 85cfebb9f824e36505a701869fbd21a821556998 Mon Sep 17 00:00:00 2001 From: saattrupdan Date: Thu, 1 Aug 2024 12:44:34 +0200 Subject: [PATCH] feat: Add repository to pyproject.toml --- {{cookiecutter.project_name}}/pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/{{cookiecutter.project_name}}/pyproject.toml b/{{cookiecutter.project_name}}/pyproject.toml index 63379a0..84f837a 100644 --- a/{{cookiecutter.project_name}}/pyproject.toml +++ b/{{cookiecutter.project_name}}/pyproject.toml @@ -8,6 +8,7 @@ authors = [ ] readme = "README.md" license = {{'"MIT"' if cookiecutter.open_source == "y" else '"Proprietary"'}} +repository = "https://github.com/alexandrainst/{{cookiecutter.project_name}}" [tool.poetry.dependencies] python = ">={{ cookiecutter.python_version }}" @@ -40,6 +41,10 @@ dependencies = [ "hydra-core=={{ cookiecutter._hydra_version }}", ] +[project.urls] +Repository = "https://github.com/alexandrainst/{{cookiecutter.project_name}}" +Issues = "https://github.com/alexandrainst/{{cookiecutter.project_name}}/issues" + [project.license] file = "LICENSE"