New brother_ql.backends package

The brother_ql.backends package provides backends for
* network (via raw TCP/IP sockets)
* linux_kernel (via device handles like /dev/usb/lp0 etc.)
* pyusb (via PyUSB)

The new backends are in use by the additional scripts
* brother_ql_debug
* brother_ql_print
This commit is contained in:
Philipp Klaus
2016-07-21 17:51:11 +02:00
parent 6c7f68e2b0
commit 6621134df9
8 changed files with 604 additions and 0 deletions
+3
View File
@@ -14,11 +14,14 @@ setup(name='brother_ql',
url = '',
license = 'GPL',
packages = ['brother_ql',
'brother_ql.backends',
'brother_ql.web'],
entry_points = {
'console_scripts': [
'brother_ql_analyse = brother_ql.brother_ql_analyse:main',
'brother_ql_create = brother_ql.brother_ql_create:main',
'brother_ql_print = brother_ql.brother_ql_print:main',
'brother_ql_debug = brother_ql.brother_ql_debug:main',
'brother_ql_web = brother_ql.web.__init__:main',
],
},