aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 8962a68b61774910c0681ae3fb541e18a4323959 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[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",
    "platformdirs>=4.9.6",
]

[project.scripts]
fnme = "fnme.cli:main"

[tool.setuptools.packages.find]
where = ["."]
include = ["fnme"]

[tool.ruff]
line-length = 79
target-version = "py312"

[tool.ruff.lint]
select = ["E", "F", "I", "UP"]

[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
git.ajschof.me — hosted by ajschofield — powered by cgit