-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
79 lines (71 loc) · 1.52 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "dageo"
description = "Data Assimilation in Geosciences"
readme = "README.rst"
requires-python = ">=3.10"
authors = [
{name = "Dieter Werthmüller", email = "[email protected]"},
{name = "Gabriel Serrao Seabra"},
{name = "Femke C. Vossepoel"},
]
dependencies = [
"numpy",
"scipy>=1.10",
"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://tuda-geo.github.io/dageo"
Documentation = "https://tuda-geo.github.io/dageo"
Repository = "https://github.com/tuda-geo/dageo"
[project.optional-dependencies]
docs = [
"pooch",
"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",
"flake8-pyproject",
]
all = [
"dageo[docs]",
"dageo[tests]",
]
build = [
"setuptools_scm>=8",
"setuptools>=64",
]
[tool.setuptools.packages.find]
include = ["dageo*"]
[tool.setuptools_scm]
version_file = "dageo/version.py"
[tool.flake8]
per-file-ignores = [
"__init__.py: F401",
]
[tool.coverage.run]
relative_files = true