Commit fe5f2405 authored by Romolo Politi's avatar Romolo Politi
Browse files

add the show method, close #1

parent a5e66e13
Loading
Loading
Loading
Loading

CHANGELOG

deleted100644 → 0
+0 −2
Original line number Diff line number Diff line
Version 0.1.0
First delivery

CHANGELOG.md

0 → 100644
+13 −0
Original line number Diff line number Diff line
# Python-CCSDS Changelog

## Version 0.2.0

- Migration to Poetry
- Added class PacketType
- Add method \_\_str__ and \_\_repr__ 
- add metaclass Seriazable to obtain a dict from a class
- add a method show to the class ccsds to obtain a Panel object with a summary of the packet.

## Version 0.1.0

- First delivery

poetry.lock

0 → 100644
+302 −0

File added.

Preview size limit exceeded, changes collapsed.

+11 −2
Original line number Diff line number Diff line
@@ -2,10 +2,19 @@
name = "Python-CCSDS"
version = "0.1.0"
keywords =['python','ccsds','nasa','esa','packets']
descriprion = 'Python library to read the CCSDS packets'
description = 'Python library to read the CCSDS packets'
authors = ["Romolo Politi <romolo.politi@inaf.it>"]
license = "GNU GPL ver3"
license = "GPL-3.0-or-later"
readme = "README.md"
packages=[{include = "PyCCSDS", from = "src"}]
classifiers = [
    "Programming Language :: Python :: 3",
    "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
    "Operating System :: OS Independent",
    "Development Status :: 3 - Alpha",
    "Topic :: Scientific/Engineering :: Astronomy",
    "Topic :: Software Development :: Libraries :: Python Modules",
]

[tool.poetry.dependencies]
python = "^3.12"
+1 −1
Original line number Diff line number Diff line
from PyCCSDS.__main__ import CCSDS
Loading