-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (41 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
44 lines (41 loc) · 1.26 KB
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
[build-system]
requires = [
"setuptools>=61.0",
"wheel",
"pybind11>=2.10",
]
build-backend = "setuptools.build_meta"
[project]
name = "pyterp"
dynamic = ["version"]
authors = [
{ name="Jonathan Motta", email="jonathangmotta98@gmail.com" },
]
description = "A package for performing optimized k-NN IDW interpolation using C++."
readme = "README.md"
requires-python = ">=3.10"
keywords = [
"interpolation", "k-NN", "IDW", "C++", "parallel", "numpy", "performance"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: C++",
]
dependencies = [
"numpy>=2.0.0",
]
[project.urls]
Homepage = "https://github.com/jgmotta98/PyTerp"
"Bug Tracker" = "https://github.com/jgmotta98/PyTerp/issues"
"Source Code" = "https://github.com/jgmotta98/PyTerp"
[tool.setuptools.dynamic]
version = {attr = "_version.__version__"}