-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
59 lines (53 loc) · 1.7 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[project]
name = "convertbng"
dynamic = ["version", "readme"]
description = "Fast lon, lat to and from ETRS89 and BNG (OSGB36) using the OS OSTN15 transform via Rust FFI"
requires-python = ">=3.8"
dependencies = [
"numpy >= 2.0.0",
]
authors = [{ name = "Stephan Hügel", email = "urschrei@gmail.com" }]
license = {file = "LICENSE.md"}
keywords = ["Geo", "OSTN02", "OSTN15", "BNG", "OSGB36", "GIS"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"License :: OSI Approved :: Blue Oak Model License (BlueOak-1.0.0)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: GIS"
]
[project.urls]
Repository = "https://github.com/urschrei/convertbng"
Tracker = "https://github.com/urschrei/convertbng/issues"
[project.optional-dependencies]
test = ["pytest >= 7.4.2"]
[tool.setuptools.dynamic]
readme = {file = "README.md", content-type = "text/markdown"}
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools >= 45",
"setuptools-scm[toml] >= 6.2",
"numpy >= 2.0.0",
"cython >= 3.0.0",
"wheel >= 0.29.0",
]
[tool.pytest.ini_options]
minversion = "6.2.2"
addopts = [
"--import-mode=importlib",
]
testpaths = [
"tests",
]
[tool.setuptools_scm]
write_to = "src/_version.py"