-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpyproject.toml
54 lines (50 loc) · 1.28 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
43
44
45
46
47
48
49
50
51
52
53
54
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "gnssmultipath"
version = "1.5.2"
authors = [
{ name="Per Helge Aarnes", email="[email protected]" },
]
maintainers = [
{ name="Per Helge Aarnes", email="[email protected]" },
]
description = "A python software that provides comprehensive solutions for GNSS multipath analysis."
readme = "README.md"
requires-python = ">=3.8"
keywords = [
"GNSS",
"multipath",
"analytics",
"gps",
"glonass",
"galileo",
"beidou",
"rinex",
"sp3",
"snr",
"position-estimation",
]
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"matplotlib==3.7.5",
"numpy==1.24.4",
"pandas==2.0.3",
"tqdm==4.66.5",
"zstandard==0.23.0",
"pytest",
"pyproj",
]
[project.urls]
"Homepage" = "https://github.com/paarnes/GNSS_Multipath_Analysis_Software"
"Bug Tracker" = "https://github.com/paarnes/GNSS_Multipath_Analysis_Software/issues"