From 94d3d9ffaaceed09d2efa59fb89c247f73f11875 Mon Sep 17 00:00:00 2001 From: Alex Schofield Date: Sun, 3 May 2026 18:18:29 +0100 Subject: init new uv project with new structure --- pyproject.toml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pyproject.toml (limited to 'pyproject.toml') diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..721d4ee --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,20 @@ +[project] +name = "fnme" +version = "0.1.0" +description = "Find cheap(er) fuel near you using the official Fuel Finder service provided by the UK government" +readme = "README.md" +requires-python = ">=3.11" +dependencies = [ + "geopy>=2.4.1", + "pandas>=3.0.2", + "requests>=2.33.1", + "numpy>=2.4.4", + "tabulate>=0.10.0" +] + +[project.scripts] +fnme = "fuelnearme.cli:main" + +[tool.setuptools.packages.find] +where = ["."] +include = ["fnme"] -- cgit v1.2.3