-
Notifications
You must be signed in to change notification settings - Fork 19
/
pyproject.toml
45 lines (41 loc) · 1.28 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "geobipy"
version = "2.3.1"
description = "McMC inversion of airborne electromagnetic data"
readme = { file = "README.rst", content-type = "text/x-rst" }
requires-python = ">=3.10"
authors = [{ name = "Leon Foks", email = "[email protected]" },
{ name = "Burke Minsley", email = "[email protected]" }]
keywords = ["inversion", "bayesian"]
dependencies = [
"numpy",
"scipy",
"h5py",
"numba",
"pandas",
"netcdf4",
"matplotlib",
"pyvista",
"progressbar2",
"cached-property",
"scikit-learn",
"pygmt",
"numba_kdtree",
"lmfit",]
classifiers = [
'License :: OSI Approved',
'License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering'
]
[project.optional-dependencies]
docs = ["sphinx_gallery", "sphinx_rtd_theme"]
[project.scripts]
geobipy = "geobipy:geobipy"
[tool.setuptools.packages.find]
where = ["."]