forked from viventriglia/PyTECGg
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (67 loc) · 1.85 KB
/
Copy pathpyproject.toml
File metadata and controls
74 lines (67 loc) · 1.85 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
[tool.poetry]
name = "pytecgg"
version = "1.3.0"
description = "Total Electron Content (TEC) reconstruction with GNSS data – a Python package with a Rust core"
authors = ["Vincenzo Ventriglia <vincenzo.ventriglia@outlook.com>"]
readme = "README.md"
license = "GPL-3.0-or-later"
[tool.poetry.dependencies]
python = ">=3.11,<3.14"
polars = ">=1.5.0, !=1.35.*"
numpy = "^2.0.0"
scipy = "^1.15"
pymap3d = "^3.2"
tzdata = "^2025.2"
ppigrf = "^2.1.0"
requests = "^2.30"
numba = "^0.64"
[tool.poetry.group.dev.dependencies]
maturin = "^1.8.7"
pytest = "^8.4.1"
pytest-cov = "^6.0.0"
jupyter = "^1.1.1"
plotly = "^6.0"
mkdocs = "^1.6.1"
mkdocs-material = "^9.7.0"
mkdocstrings = {extras = ["python"], version = "^1.0.0"}
matplotlib = "^3.10"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_functions = "test_*"
addopts = "-v --cov=pytecgg --cov-report=term-missing"
[tool.coverage.run]
omit = [
"*/__init__.py",
"*/constants.py",
"pytecgg/utils/benchmark.py"
]
[tool.maturin]
module-name = "pytecgg"
[build-system]
requires = ["maturin>=1.8"]
build-backend = "maturin"
[project]
name = "pytecgg"
version = "1.3.0"
description = "Total Electron Content (TEC) reconstruction with GNSS data – a Python package with a Rust core"
readme = "README.md"
requires-python = ">=3.11,<3.14"
license = { text = "GPL-3.0-or-later" }
authors = [{ name = "Vincenzo Ventriglia", email = "vincenzo.ventriglia@outlook.com" }]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
]
dependencies = [
"polars >=1.5.0, !=1.35.*",
"numpy >=2.0.0",
"scipy >=1.15",
"pymap3d >=3.2",
"tzdata >=2025.2",
"ppigrf >=2.1.0",
"requests >=2.30",
"numba >=0.64"
]