-
-
Notifications
You must be signed in to change notification settings - Fork 91
/
pyproject.toml
42 lines (35 loc) · 1.2 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "georinex"
description = "Python RINEX 2/3 NAV/OBS reader with speed and simplicity."
keywords = ["RINEX", "sp3", "HDF5", "NetCDF4"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Atmospheric Science"
]
requires-python = ">=3.8"
dynamic = ["readme", "version"]
dependencies = ["python-dateutil", "numpy", "xarray", "hatanaka", "ncompress", "netcdf4"]
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
version = {attr = "georinex.__version__"}
[project.optional-dependencies]
tests = ["pytest", "pytest-timeout"]
lint = ["flake8", "flake8-bugbear", "flake8-builtins", "flake8-blind-except", "mypy"]
plot = ["matplotlib", "pymap3d", "cartopy"]
io = ["psutil"]
[tool.black]
line-length = 99
[tool.mypy]
files = ["src"]
ignore_missing_imports = true
allow_redefinition = true
[tool.pytest.ini_options]
addopts = "-ra"