diff --git a/README.md b/README.md index d246fc3..e6de72b 100644 --- a/README.md +++ b/README.md @@ -3,3 +3,5 @@ This repository contains the train, data mocking and usage procedures for handling the multiple annotators segmentation problem researched by the GCPDS (2023). + +Official documentation available at: https://seg-tgce.readthedocs.io/en/latest/ diff --git a/core/README.md b/core/README.md index e69de29..35008be 100644 --- a/core/README.md +++ b/core/README.md @@ -0,0 +1,7 @@ +Framework for handling image segmentation in the context of multiple annotators + +This repository contains the train, data mocking and usage procedures +for handling the multiple annotators segmentation problem researched by the +GCPDS (2023). + +Official documentation available at: https://seg-tgce.readthedocs.io/en/latest/ diff --git a/core/pyproject.toml b/core/pyproject.toml index a7bbb2a..b86a1b4 100644 --- a/core/pyproject.toml +++ b/core/pyproject.toml @@ -1,6 +1,21 @@ +[project] +description = "Framework for handling image segmentation in the context of multiple annotators" +name = "seg_tgce" +version = "0.1.0" +readme = "README.md" +authors = [{ name = "Brandon Lotero", email = "blotero@gmail.com" }] +maintainers = [{ name = "Brandon Lotero", email = "blotero@gmail.com" }] +license = { file = "../LICENSE" } + +[project.urls] +Homepage = "https://github.com/blotero/seg_tgce" +Documentation = "https://seg-tgce.readthedocs.io/en/latest/" +Repository = "https://github.com/blotero/seg_tgce" +Issues = "https://github.com/blotero/seg_tgce/issues" + [tool.poetry] name = "seg_tgce" -version = "0.0.1" +version = "0.1.0" authors = ["Brandon Lotero "] description = "A package for the SEG TGCE project" readme = "README.md"