forked from lasp/space_packet_parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (57 loc) · 1.45 KB
/
pyproject.toml
File metadata and controls
62 lines (57 loc) · 1.45 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
[tool.poetry]
name = "space_packet_parser"
version = "4.2.0"
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 <gavin.medley@lasp.colorado.edu>",
"Michael Chambliss <michael.chambliss@lasp.colorado.edu>",
"Greg Lucas <greg.lucas@lasp.colorado.edu>",
]
maintainers = [
"Gavin Medley <gavin.medley@lasp.colorado.edu>"
]
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.8"
bitstring = ">=4.0.1"
[tool.poetry.group.dev.dependencies]
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"