-
Notifications
You must be signed in to change notification settings - Fork 22
/
pyproject.toml
83 lines (74 loc) · 1.59 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "empymod"
description = "Open-source full 3D electromagnetic modeller for 1D VTI media"
readme = "README.rst"
requires-python = ">=3.10"
authors = [
{name = "The emsig community", email = "[email protected]"},
]
dependencies = [
"numpy",
"scipy>=1.10",
"numba",
"libdlf",
"scooby",
]
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://empymod.emsig.xyz"
Repository = "https://github.com/emsig/empymod"
[project.optional-dependencies]
docs = [
"ipympl",
"sphinx>=7.3",
"numpydoc",
"ipykernel",
"matplotlib",
"pickleshare",
"sphinx_design",
"sphinx_numfig",
"sphinx_gallery>=0.16",
"memory_profiler",
"sphinx_automodapi",
"pydata_sphinx_theme",
]
tests = [
"flake8",
"pytest",
"coveralls",
"pytest_cov",
"pytest_mpl",
"flake8-pyproject",
"pytest-console-scripts",
]
all = [
"empymod[docs]",
"empymod[tests]",
]
build = [
"setuptools_scm>=8",
"setuptools>=64",
]
[project.scripts]
empymod = "empymod.__main__:main"
[tool.setuptools.packages.find]
include = ["empymod*"]
[tool.setuptools_scm]
version_file = "empymod/version.py"
[tool.flake8]
per-file-ignores = [
"__init__.py: F401, F403, F821",
]
[tool.coverage.run]
relative_files = true