Making this a package

This commit is contained in:
Philipp Klaus
2015-12-12 14:31:17 +01:00
parent ecd970d846
commit 01cbf716b3
4 changed files with 48 additions and 6 deletions
View File
+6 -6
View File
@@ -4,12 +4,12 @@ import struct
import packbits
import numpy as np
from devicedependent import models, \
min_max_feed, \
min_max_length_dots, \
paper_dimensions, \
number_bytes_per_row, \
right_margin_addition
from .devicedependent import models, \
min_max_feed, \
min_max_length_dots, \
paper_dimensions, \
number_bytes_per_row, \
right_margin_addition
class QLRaster(object):
+42
View File
@@ -0,0 +1,42 @@
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='brother_ql',
version = '0.6-dev',
description = 'Python package to talk to Brother QL label printers',
long_description = '',
author = 'Philipp Klaus',
author_email = 'philipp.l.klaus@web.de',
url = '',
license = 'GPL',
packages = ['brother_ql'],
entry_points = {
'console_scripts': [
'brother_ql_reader = brother_ql.reader:main',
],
},
include_package_data = False,
zip_safe = True,
platforms = 'any',
install_requires = ['numpy', 'packbits', 'pillow'],
extras_require = {
'brother_ql_reader': ["matplotlib",],
},
keywords = 'Brother QL-500 QL-570 QL-710W QL-720NW',
classifiers = [
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: System :: Hardware :: Hardware Drivers',
]
)