From f7cae950162d104b392c572c58ae99c7a67aefd6 Mon Sep 17 00:00:00 2001 From: leynier Date: Tue, 8 Dec 2020 19:10:52 -0500 Subject: [PATCH] Add new FastAPI template to README --- README.md | 5 +++++ docs/index.md | 5 +++++ pyproject.toml | 2 +- 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b3c1a84..ab890a1 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,11 @@ Python template with CI/CD ready for production +## Branches + +- [main](https://github.com/leynier/python-template): For packages, console applications and / or command line interfaces implemented with Python +- [fastapi](https://github.com/leynier/python-template/tree/fastapi): For web applications implemented with [FastAPI](https://fastapi.tiangolo.com) + ## Features - Management of dependencies with [Poetry](https://python-poetry.org) diff --git a/docs/index.md b/docs/index.md index b3c1a84..ab890a1 100644 --- a/docs/index.md +++ b/docs/index.md @@ -15,6 +15,11 @@ Python template with CI/CD ready for production +## Branches + +- [main](https://github.com/leynier/python-template): For packages, console applications and / or command line interfaces implemented with Python +- [fastapi](https://github.com/leynier/python-template/tree/fastapi): For web applications implemented with [FastAPI](https://fastapi.tiangolo.com) + ## Features - Management of dependencies with [Poetry](https://python-poetry.org) diff --git a/pyproject.toml b/pyproject.toml index 3cf418e..6a573aa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "template" -version = "0.2.0" +version = "0.3.0" description = "Python template with CI/CD ready for production" authors = ["leynier "] homepage = "https://github.com/leynier/python-template"