diff options
| author | Alex Schofield <git@ajschof.me> | 2026-05-03 19:56:20 +0100 |
|---|---|---|
| committer | Alex Schofield <git@ajschof.me> | 2026-05-03 19:56:20 +0100 |
| commit | cd38f633c2730804f502cb5b0f461c79b906cd53 (patch) | |
| tree | 93fd19349e0f60ca4d8708ead9014a3cb9e9c50a /pyproject.toml | |
| parent | 35b68e14162c722c3103f2a6168f0ab205e9c2c2 (diff) | |
| parent | 4264ced9fa14b689acc18169b2c1cae72d3ce667 (diff) | |
| download | fuelnearme-cd38f633c2730804f502cb5b0f461c79b906cd53.tar.gz fuelnearme-cd38f633c2730804f502cb5b0f461c79b906cd53.zip | |
merge: uv-migration into main
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..fcf426d --- /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 = "fnme.cli:main" + +[tool.setuptools.packages.find] +where = ["."] +include = ["fnme"] |
