From b9bad3d284f275ecbe1f85f67d928bc4ec898211 Mon Sep 17 00:00:00 2001 From: Jacob Windsor Date: Wed, 19 Feb 2025 11:25:04 +0100 Subject: [PATCH] Switch to project toml --- README.md | 2 +- backend/pyproject.toml | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 backend/pyproject.toml diff --git a/README.md b/README.md index abc5908..7f7a682 100644 --- a/README.md +++ b/README.md @@ -1 +1 @@ -# hiring-programmers \ No newline at end of file +# Hiring Pair Programming Excercise \ No newline at end of file diff --git a/backend/pyproject.toml b/backend/pyproject.toml new file mode 100644 index 0000000..f23ec3a --- /dev/null +++ b/backend/pyproject.toml @@ -0,0 +1,12 @@ +[build-system] +requires = ["setuptools", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "axiomatic-backend" +version = "0.1.0" +dependencies = [ + "fastapi", + "pydantic", + "uvicorn", +] \ No newline at end of file