-
Notifications
You must be signed in to change notification settings - Fork 40
/
pyproject.toml
102 lines (92 loc) · 2.57 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "pyTMD"
description = "Python-based tidal prediction software for estimating ocean, load, solid Earth and pole tides"
keywords = [
"Ocean Tides",
"Load Tides",
"Pole Tides",
"Solid Earth Tides",
"Tidal Prediction",
]
authors = [
{name = "Tyler Sutterley"},
{email = "[email protected]"}
]
maintainers = [
{name = "pyTMD contributors"}
]
license = {file = "LICENSE"}
readme = "README.rst"
requires-python = "~=3.6"
dependencies = [
"lxml",
"netCDF4",
"numpy",
"pyproj",
"python-dateutil",
"scipy>=1.10.1",
"setuptools_scm",
"timescale>=0.0.3",
]
dynamic = ["version"]
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Physics",
]
[project.urls]
Homepage = "https://pytmd.readthedocs.io"
Documentation = "https://pytmd.readthedocs.io"
Repository = "https://github.com/tsutterley/pyTMD"
Issues = "https://github.com/tsutterley/pyTMD/issues"
[project.optional-dependencies]
doc = ["docutils", "fontconfig", "freetype", "graphviz", "myst-nb", "numpydoc", "sphinx", "sphinx-argparse>=0.4", "sphinx-design", "sphinx_rtd_theme"]
all = ["cartopy", "gdal", "h5py", "ipyleaflet", "ipywidgets", "jplephem", "matplotlib", "mpi4py", "notebook", "pandas", "pyyaml"]
dev = ["flake8", "pytest>=4.6", "pytest-cov", "oct2py", "boto3"]
[tool.setuptools.packages.find]
exclude = ["providers*", "run*", "test*"]
[tool.pytest.ini_options]
minversion = "6.0"
norecursedirs = ".git"
python_files = [
"test*.py"
]
testpaths = [
"test"
]
[tool.coverage.run]
branch = true
source = [
"pyTMD",
"test",
]
omit = [
"setup.py",
"conf.py",
"scripts/*",
"pyTMD/calc_astrol_longitudes.py",
"pyTMD/compute_tide_corrections.py",
"pyTMD/convert_crs.py",
"pyTMD/convert_ll_xy.py",
"pyTMD/load_constituent.py",
"pyTMD/load_nodal_corrections.py",
"test/_coefficients_to_json.py",
"test/_def_to_json.py",
"providers/*.py",
]
[tool.coverage.report]
show_missing = true
precision = 2