-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
63 lines (58 loc) · 1.47 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
[tool.poetry]
name = "space_packet_parser"
version = "5.0.1"
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"
[tool.poetry.group.dev.dependencies]
pycodestyle = "*"
pylint = "*"
pytest = "*"
pytest-randomly = "*"
pytest-cov = "*"
pyyaml = "*"
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"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"