Skip to content

Commit

Permalink
updated BitPacket description in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
aconchillo committed Nov 5, 2012
1 parent b1c2c66 commit 8222611
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions setup.py
Expand Up @@ -12,19 +12,23 @@
requires = [],
package_dir = {'': 'src'},
packages = find_packages('src'),
description = 'A Python object-oriented representation of packets',
description = 'A Python object-oriented representation for data structures',
long_description =
'''
BitPacket is a Python module that provides a simple
objected-oriented representation of packets. The main purpose is
to provide an easy and extensible interface for building and
parsing packets.
objected-oriented representation for data structures. The main
purpose is to provide an easy and extensible interface for
building and parsing these structures (e.g. network packets).
These are the main features of BitPacket:
* Packets can be packed/unpacked to/from bytes.
* Allows meta-fields, that is, fields that depend on other fields.
* A packet can have single bit fields.
* Byte-oriented with support for bit fields.
* Same BitPacket definition can be used for packing and
unpacking data.
* Comes with an extensible framework to customize BitPackets
representation (e.g. text tables, Gtk widgets).
''',
classifiers = [
'Development Status :: 5 - Production/Stable',
Expand Down

0 comments on commit 8222611

Please sign in to comment.