forked from shibaji7/pynasonde
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (52 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
59 lines (52 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
50
51
52
53
54
55
56
57
58
59
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm[toml]>=8", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
# Prevent setuptools >=68 from emitting License-File in wheel METADATA.
# That field belongs to Metadata-Version 2.4 which PyPI does not yet accept.
license-files = []
[project]
name = "pynasonde"
dynamic = ["version"]
description = "Precision ionospheric radio sounding tools"
readme = "README.md"
requires-python = ">=3.11"
authors = [{name = "Shibaji Chakraborty"}]
license = {text = "MIT"}
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--cov=pynasonde --cov-report=xml --cov-report=term-missing"
testpaths = ["tests"]
[tool.coverage.run]
branch = true
source = ["pynasonde"]
[tool.coverage.report]
show_missing = true
skip_covered = true
[tool.coverage.xml]
output = "coverage.xml"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"coverage",
"numpy",
"pandas",
"matplotlib",
"opencv-python-headless",
"pytesseract",
"loguru",
"requests",
"beautifulsoup4",
"tqdm",
"lxml",
"toml",
"pytz",
"timezonefinder",
"SciencePlots",
"scipy",
"xarray",
"joblib",
"pysolar",
"netCDF4",
]