From 429391123bac0519044dfc6a095ace8c8dd5dc3e Mon Sep 17 00:00:00 2001 From: "B.T. Franklin" Date: Wed, 24 Jul 2024 22:05:51 -0700 Subject: [PATCH] Added project URLs, and bumped versions in preparation for release --- pyproject.toml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 124a2bb..65b9429 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "coderoller" -version = "0.4.1" +version = "0.4.2" description = "A collection of tools to flatten and process code repositories" authors = [ {name = "B.T. Franklin", email = "brandon.franklin@gmail.com"}, @@ -23,11 +23,16 @@ classifiers = [ "Environment :: Console", ] +[project.urls] +Homepage = "https://github.com/btfranklin/coderoller" +Issues = "https://github.com/btfranklin/coderoller/issues" +Changelog = "https://github.com/btfranklin/coderoller/releases" +Repository = "https://github.com/btfranklin/coderoller.git" + [build-system] requires = ["pdm-backend"] build-backend = "pdm.backend" - [tool.pdm] distribution = true @@ -36,7 +41,7 @@ excludes = ["tests/**"] [tool.pdm.dev-dependencies] dev = [ - "pytest>=8.2.2", + "pytest>=8.3.1", "flake8>=7.1.0", ]