-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (68 loc) · 1.7 KB
/
Copy pathpyproject.toml
File metadata and controls
77 lines (68 loc) · 1.7 KB
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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "pyflowdiagnostics"
description = "Flow Diagnostics Toolkit"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{name = "Tsubasa Onishi", email = "onishi.tsubasa@eaps.ethz.ch"},
]
dependencies = [
"numpy",
"scipy",
"pandas",
"h5py",
"pymatsolver",
"xlsxwriter",
"scooby",
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
]
dynamic = ["version"]
[project.license]
file = "LICENSE"
[project.urls]
Homepage = "https://github.com/GEG-ETHZ/pyflowdiagnostics"
Documentation = "https://github.com/GEG-ETHZ/pyflowdiagnostics"
Repository = "https://github.com/GEG-ETHZ/pyflowdiagnostics"
[project.optional-dependencies]
docs = [
"sphinx",
"sphinx_automodapi",
"pydata_sphinx_theme",
]
tests = [
"ruff",
"pytest",
"pooch",
"coveralls",
"pytest_cov",
"pytest-console-scripts",
]
all = [
"pyflowdiagnostics[docs]",
"pyflowdiagnostics[tests]",
]
build = [
"setuptools_scm>=8",
"setuptools>=64",
]
[project.scripts]
pyflowdiagnostics = "pyflowdiagnostics.__main__:main"
[tool.setuptools.packages.find]
include = ["pyflowdiagnostics*"]
[tool.setuptools_scm]
version_file = "pyflowdiagnostics/version.py"
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
"well.py" = ["E741"] # we should fix this
"grid.py" = ["E741"] # we should fix this
"flow_diagnostics.py" = ["E722", "E741", "F841"] # we should fix this
"sr3_reader.py" = ["E722", "F841"] # external library
[tool.coverage.run]
relative_files = true