-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (78 loc) · 1.87 KB
/
pyproject.toml
File metadata and controls
87 lines (78 loc) · 1.87 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
75
76
77
78
79
80
81
82
83
84
85
86
87
[project]
name = "prx"
version = "0.0.1"
description = "Making raw GNSS data more accessible."
readme = "README.md"
authors = [
{ name = "Jan Bolting", email = "janbolting@gmail.com" },
{ name = "Paul Thevenon", email = "paul.thevenon@gmail.com" },
]
license = { text = "MIT" }
requires-python = "<3.14,>=3.10"
dependencies = [
"pandas<3.0.0,>=2.2.3",
"numpy<3.0,>=2.2",
"joblib<2.0.0,>=1.4.2",
"imohash<2.0.0,>=1.1.0",
"flake8<8.0.0,>=7.1.1",
"dotmap<2.0.0,>=1.3.30",
"gitpython<4.0.0,>=3.1.41",
"scipy<2.0.0,>=1.14.1",
"matplotlib<4.0.0,>=3.10.0",
"astropy<7.0.0,>=6.1.7",
"astropy-iers-data>=0.2026.3",
"setuptools>=75.6.0,<81.0.0",
"plotly>=5.24.1,<7.0.0",
"requests<3.0.0,>=2.32.3",
"georinex",
"polars>=1.31.0",
"pyarrow>=20.0.0",
]
[project.scripts]
prx = "prx:main"
[tool.pytest]
log_cli_level = "INFO"
log_cli = true
[tool.uv]
package = true
python-preference = "only-managed"
[tool.uv.sources]
georinex = { git = "https://github.com/geospace-code/georinex", rev = "95ef1d8e7150f998a1b5a429090cadb429128648" }
[build-system]
requires = ["hatchling", "uv-dynamic-versioning"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"line-profiler>=5.0.2",
"pytest>=9.0.2",
"pytest-xdist>=3.8.0",
"ruff>=0.15.4",
"snakeviz>=2.2.2",
"viztracer>=1.1.1",
"pytest-profiling>=1.8.1",
"memray>=1.19.3;platform_system != 'Windows'",
]
[tool.hatch.build.targets.sdist]
packages = ["src/prx"]
include = [
"src/prx",
]
exclude = [
"src/prx/test",
"src/prx/sp3/test",
"src/prx/rinex_nav/test",
"src/prx/rinex_obs/test",
]
[tool.hatch.build.targets.wheel]
packages = ["src/prx"]
include = [
"src/prx",
]
exclude = [
"src/prx/test",
"src/prx/sp3/test",
"src/prx/rinex_nav/test",
"src/prx/rinex_obs/test",
]
[tool.hatch.version]
source = "uv-dynamic-versioning"