-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
88 lines (79 loc) · 1.66 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "emg3d"
description = "A multigrid solver for 3D electromagnetic diffusion"
readme = "README.rst"
requires-python = ">=3.10"
authors = [
{name = "The emsig community", email = "[email protected]"},
]
dependencies = [
"numpy",
"scipy>=1.10",
"numba",
"empymod>=2.3.2",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
]
dynamic = ["version"]
[project.license]
file = "LICENSE"
[project.urls]
Homepage = "https://emsig.xyz"
Documentation = "https://emg3d.emsig.xyz"
Repository = "https://github.com/emsig/emg3d"
[project.optional-dependencies]
full = [
"tqdm",
"h5py",
"xarray",
"discretize",
"matplotlib",
"ipympl",
# "pygimli>=1.5.2", # Only once implemented
# "simpeg>=0.22.1", # Only once implemented
]
docs = [
"emg3d[full]",
"sphinx",
"numpydoc",
"ipykernel",
"pickleshare",
"sphinx_design",
"sphinx_numfig",
"sphinx_automodapi",
"pydata_sphinx_theme",
]
tests = [
"flake8",
"pytest",
"coveralls",
"pytest_cov",
"flake8-pyproject",
"pytest-console-scripts",
]
all = [
"emg3d[docs]",
"emg3d[tests]",
]
build = [
"setuptools_scm>=8",
"setuptools>=64",
]
[project.scripts]
emg3d = "emg3d.cli.main:main"
[tool.setuptools.packages.find]
include = ["emg3d*"]
[tool.setuptools_scm]
version_file = "emg3d/version.py"
[tool.flake8]
per-file-ignores = [
"__init__.py: F401, F403, F821",
]
[tool.coverage.run]
relative_files = true