aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
diff options
context:
space:
mode:
authorAlex Schofield <git@ajschof.me>2026-05-03 18:18:29 +0100
committerAlex Schofield <git@ajschof.me>2026-05-03 18:18:29 +0100
commit94d3d9ffaaceed09d2efa59fb89c247f73f11875 (patch)
treed0fee5bc215b710543c6452563d297c895fa3ac1 /pyproject.toml
parent35b68e14162c722c3103f2a6168f0ab205e9c2c2 (diff)
downloadfuelnearme-94d3d9ffaaceed09d2efa59fb89c247f73f11875.tar.gz
fuelnearme-94d3d9ffaaceed09d2efa59fb89c247f73f11875.zip
init new uv project with new structure
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml20
1 files changed, 20 insertions, 0 deletions
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"]
git.ajschof.me — hosted by ajschofield — powered by cgit