-
Notifications
You must be signed in to change notification settings - Fork 35
/
pyproject.toml
51 lines (48 loc) · 1.33 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
[tool.poetry]
name = "gnss-lib-py"
version = "1.0.3"
description = "Modular Python tool for parsing, analyzing, and visualizing Global Navigation Satellite Systems (GNSS) data and state estimates"
authors = ["Derek Knowles <[email protected]>",
"Ashwin Kanhere <[email protected]>",
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/Stanford-NavLab/gnss_lib_py"
documentation = "https://gnss-lib-py.readthedocs.io/en/latest/"
keywords = ["gnss"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = ">=3.9, < 3.13"
numpy = "^1.21.0"
pandas = "^2.0.0"
georinex = "<=1.16.1"
unlzw3 = "^0.2.1"
pynmea2 = "^1.18.0"
pytest = ">=7.2"
scipy = "^1.7.3"
jupyter = "^1.0.0"
notebook = "^7.0.0"
ipykernel = "^6.0.3"
matplotlib = "^3.5.1"
plotly = "^5.8.0"
kaleido = "0.2.1"
requests = "^2.29.0"
[tool.poetry.group.dev.dependencies]
Sphinx = "^7.0.0"
sphinx-rtd-theme = "^1.0.0"
sphinxcontrib-napoleon = "^0.7"
pylint-exit = "^1.2.0"
nbsphinx = "^0.8.9"
nbsphinx-link = "^1.3.0"
tqdm = "^4.65.0"
pylint = "^2.11.1"
pytest-cov = "^4.0.0"
sphinx-copybutton = "^0.5.2"
poetry-plugin-export = "^1.8.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"