2020-05-09 00:45:34 +00:00
|
|
|
[metadata]
|
|
|
|
name = python-escpos
|
|
|
|
url = https://github.com/python-escpos/python-escpos
|
|
|
|
description = Python library to manipulate ESC/POS Printers
|
|
|
|
long_description = file: README.rst
|
|
|
|
license = MIT
|
|
|
|
license_file = LICENSE
|
|
|
|
author = Manuel F Martinez and others
|
|
|
|
author_email = dev@pkanzler.de
|
|
|
|
maintainer = Patrick Kanzler
|
|
|
|
maintainer_email = dev@pkanzler.de
|
|
|
|
keywords = ESC/POS, thermoprinter, voucher printer, printing, receipt
|
|
|
|
classifiers =
|
|
|
|
Development Status :: 4 - Beta
|
|
|
|
Environment :: Console
|
|
|
|
Intended Audience :: Developers
|
|
|
|
License :: OSI Approved :: MIT License
|
|
|
|
Operating System :: OS Independent
|
|
|
|
Programming Language :: Python
|
|
|
|
Programming Language :: Python :: 3
|
|
|
|
Programming Language :: Python :: 3.7
|
|
|
|
Programming Language :: Python :: 3.8
|
2020-11-08 22:51:57 +00:00
|
|
|
Programming Language :: Python :: 3.9
|
2021-10-30 20:21:34 +00:00
|
|
|
Programming Language :: Python :: 3.10
|
2023-04-19 20:15:47 +00:00
|
|
|
Programming Language :: Python :: 3.11
|
2020-05-09 00:45:34 +00:00
|
|
|
Programming Language :: Python :: Implementation :: CPython
|
|
|
|
Topic :: Software Development :: Libraries :: Python Modules
|
|
|
|
Topic :: Office/Business :: Financial :: Point-Of-Sale
|
|
|
|
project_urls =
|
|
|
|
Bug Tracker = https://github.com/python-escpos/python-escpos/issues
|
|
|
|
Documentation = https://python-escpos.readthedocs.io/en/latest/
|
|
|
|
Release Notes = https://github.com/python-escpos/python-escpos/releases
|
|
|
|
|
|
|
|
[options]
|
2020-11-08 22:51:57 +00:00
|
|
|
python_requires = >=3.6
|
2020-05-09 00:45:34 +00:00
|
|
|
zip_safe = false
|
|
|
|
include_package_data = true
|
|
|
|
install_requires =
|
|
|
|
pyusb>=1.0.0
|
|
|
|
Pillow>=2.0
|
|
|
|
qrcode>=4.0
|
|
|
|
pyserial
|
2019-10-07 05:25:28 +00:00
|
|
|
python-barcode>=0.9.1,<1
|
2020-05-11 20:43:44 +00:00
|
|
|
setuptools
|
2020-05-09 00:45:34 +00:00
|
|
|
six
|
|
|
|
appdirs
|
|
|
|
PyYAML
|
|
|
|
argparse
|
|
|
|
argcomplete
|
|
|
|
future
|
|
|
|
setup_requires = setuptools_scm
|
|
|
|
tests_require =
|
|
|
|
jaconv
|
|
|
|
tox
|
|
|
|
pytest!=3.2.0,!=3.3.0
|
|
|
|
pytest-cov
|
|
|
|
pytest-mock
|
|
|
|
nose
|
|
|
|
scripttest
|
|
|
|
mock
|
|
|
|
hypothesis>4
|
|
|
|
flake8
|
2021-10-30 20:21:34 +00:00
|
|
|
sphinxcontrib-spelling>=7.2.0
|
2020-05-09 00:45:34 +00:00
|
|
|
|
2016-03-02 22:16:58 +00:00
|
|
|
[nosetests]
|
|
|
|
verbosity=3
|
2016-03-06 20:38:21 +00:00
|
|
|
with-doctest=1
|
|
|
|
|
2017-01-30 00:26:50 +00:00
|
|
|
[flake8]
|
2017-01-30 00:42:34 +00:00
|
|
|
exclude = .git,.tox,.github,.eggs,__pycache__,doc/conf.py,build,dist,capabilities-data,test,src/escpos/constants.py
|
2017-01-30 00:41:01 +00:00
|
|
|
max-line-length = 120
|
2017-01-30 01:29:08 +00:00
|
|
|
# future-imports = absolute_import, division, print_function, unicode_literals # we are not there yet
|