forked from fatiando/harmonica
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
72 lines (65 loc) · 2.04 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[project]
name = "harmonica"
description = "Forward modeling, inversion, and processing gravity and magnetic data"
dynamic = ["version"]
authors = [
{name="The Harmonica Developers", email="[email protected]"},
]
maintainers = [
{name = "Santiago Soler", email = "[email protected]"}
]
readme = "README.md"
license = {text = "BSD-3-Clause"}
keywords = ["geoscience", "geophysics"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
requires-python = ">=3.8"
dependencies = [
"numpy >= 1.21",
"pandas >= 1.1",
"scipy >= 1.5",
"scikit-learn >= 0.24",
"numba >= 0.52",
"xarray >= 0.16",
"verde >= 1.7",
"xrft >= 1.0",
"choclo >= 0.1",
]
[project.urls]
"Homepage" = "https://www.fatiando.org/harmonica"
"Documentation" = "https://www.fatiando.org/harmonica"
"Repository" = "https://github.com/fatiando/harmonica.git"
"Changelog" = "https://www.fatiando.org/harmonica/latest/changes.html"
"Bug Tracker" = "https://github.com/fatiando/harmonica/issues"
"Source Code" = "https://github.com/fatiando/harmonica"
"Release Notes" = "https://github.com/fatiando/harmonica/releases"
[project.optional-dependencies]
visualizations = ["pyvista>=0.27", "vtk>=9"]
numba_progress = ["numba_progress"]
[build-system]
requires = ["setuptools>=61", "wheel", "setuptools_scm[toml]>=8.0.3"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "node-and-date"
version_file = "harmonica/_version.py"
[tool.pytest.ini_options]
doctest_optionflags = "NUMBER"
markers = [
"use_numba: mark test functions that call Numba jitted functions"
]
# Make sure isort and Black are compatible
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.burocrata]
notice = '''
# Copyright (c) 2018 The Harmonica Developers.
# Distributed under the terms of the BSD 3-Clause License.
# SPDX-License-Identifier: BSD-3-Clause
#
# This code is part of the Fatiando a Terra project (https://www.fatiando.org)
#'''