-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (41 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
49 lines (41 loc) · 1.17 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "opr_python"
version = "0.1.0"
description = "Utilities for reading and restructuring CReSIS radar data in Python (two-way travel time → depth/elevation)."
readme = "README.md"
requires-python = ">=3.0"
keywords = ["CReSIS", "radar", "glaciology", "geophysics", "cryosphere", "remote sensing", "depth conversion"]
license = { file = "LICENSE" }
dependencies = [
"numpy",
"scipy",
"matplotlib",
"h5py",
"hdf5storage",
"mat73",
"pyproj",
"tqdm",
"xarray",
]
[project.urls]
Homepage = "https://example.com/opr_python"
Source = "https://example.com/opr_python"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["opr_python*"]
[tool.setuptools.package-data]
"opr_python" = ["*.mat"]
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-q"
testpaths = ["tests"]
[tool.black]
line-length = 88
target-version = ["py39", "py310", "py311"]