-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
85 lines (76 loc) · 1.96 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
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
[tool.poetry]
name = "space_packet_parser"
version = "5.1.0rc1"
description = "A CCSDS telemetry packet decoding library based on the XTCE packet format description standard."
license = "BSD-3-Clause"
readme = "README.md"
include = ["LICENSE.txt", "CITATION.cff"]
authors = [
"Gavin Medley <[email protected]>",
"Michael Chambliss <[email protected]>",
"Greg Lucas <[email protected]>",
]
maintainers = [
"Gavin Medley <[email protected]>"
]
repository = "https://github.com/medley56/space_packet_parser"
homepage = "https://space-packet-parser.readthedocs.io"
keywords = [
"ccsds",
"xtce",
"space data systems",
"space packet protocol",
"packet parsing",
"lasp",
"university of colorado",
"data processing",
"data extraction",
"data manipulation",
"data transformation",
"data encoding",
"data decoding",
"packet inspection",
"binary data",
"python"
]
[tool.poetry.dependencies]
python = ">=3.9"
lxml = ">=4.8.0"
click = "^8.0"
rich = "^13.0"
# Extras dependencies
xarray = { version = ">2024.0.0", optional = true }
numpy = { version = "^2.0.0", optional = true }
[tool.poetry.group.dev.dependencies]
pytest = "*"
pytest-benchmark = "*"
pytest-randomly = "*"
pytest-cov = "*"
pyyaml = "*"
ruff = "*"
sphinx = "*"
myst-parser = "*"
sphinx-autoapi = "*"
sphinx-rtd-theme = "*"
coverage = "*"
[tool.poetry.group.examples]
optional = true
[tool.poetry.group.examples.dependencies]
matplotlib = ">=3.4"
memory-profiler = "^0.61.0"
[tool.poetry.extras]
xarray = ["xarray", "numpy"]
[tool.poetry.scripts]
spp = "space_packet_parser.cli:spp"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
filterwarnings = [
"error",
"ignore:You are encoding a BooleanParameterType:UserWarning"
]
[tool.ruff]
target-version = "py39"
line-length = 120
lint.select = ["E", "F", "I", "S", "W", "PT", "UP"]