-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
39 lines (34 loc) · 961 Bytes
/
pyproject.toml
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
34
35
36
37
38
[project]
name = "bng-latlon"
version = 1.1
description = "Converts british national grid (OSBG36) to lat lon (WGS84) and vice versa."
readme = "README.md"
authors = [
{ name = "Hannah Fry" },
{ name = "F. Malina", email = "[email protected]" },
]
keywords = [
"GPS",
"OSGB",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: Public Domain",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: GIS",
]
[project.urls]
Funding = "https://unilexicon.com/fm/pay.html"
Homepage = "https://github.com/fmalina/blocl-bnglatlon"
[tool.hatch.build.targets.sdist]
include = ["/bng_latlon"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
lint.select = ["E", "F", "B"]
line-length = 100
format.quote-style = "single"