forked from corinne-wf-home/pybme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 1.23 KB
/
Copy pathpyproject.toml
File metadata and controls
41 lines (37 loc) · 1.23 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pybme"
version = "0.5.0"
description = "Bayesian Maximum Entropy geostatistical library — a Python port of MATLAB BMElib (Serre & Christakos)."
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [
{name = "Corinne Wiesner-Friedman"},
]
# PyBME is a Python port of the MATLAB BMElib library.
# Original BMElib authors: Marc L. Serre and George Christakos (UNC Chapel Hill).
# Reference: Serre M.L. & Christakos G. (1999). BMElib: modern geostatistics
# for environmental and health sciences. SERRA 13:1-14.
keywords = ["geostatistics", "BME", "kriging", "soft-data", "spatial"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: GIS",
]
dependencies = [
"numpy>=1.24",
"scipy>=1.10",
]
[project.optional-dependencies]
plot = ["matplotlib>=3.6"]
dev = ["pytest>=7", "matplotlib>=3.6"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short"