2013-03-14 06:22:43 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
2015-12-30 15:58:28 +00:00
|
|
|
import os
|
|
|
|
import sys
|
2016-06-20 14:41:46 +00:00
|
|
|
from setuptools import find_packages, setup
|
2016-06-19 10:25:40 +00:00
|
|
|
from setuptools.command.test import test as test_command
|
2015-12-30 15:58:28 +00:00
|
|
|
|
2016-01-08 02:34:14 +00:00
|
|
|
|
2016-06-20 14:41:46 +00:00
|
|
|
base_dir = os.path.dirname(__file__)
|
|
|
|
src_dir = os.path.join(base_dir, "src")
|
|
|
|
|
|
|
|
# When executing the setup.py, we need to be able to import ourselves, this
|
|
|
|
# means that we need to add the src/ directory to the sys.path.
|
|
|
|
sys.path.insert(0, src_dir)
|
|
|
|
|
|
|
|
|
2015-12-30 15:58:28 +00:00
|
|
|
def read(fname):
|
|
|
|
"""read file from same path as setup.py"""
|
|
|
|
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
|
|
|
|
2016-01-08 02:34:14 +00:00
|
|
|
|
2016-06-19 10:25:40 +00:00
|
|
|
class Tox(test_command):
|
2016-01-05 09:39:28 +00:00
|
|
|
"""proxy class that enables tox to be run with setup.py test"""
|
2015-12-30 15:58:28 +00:00
|
|
|
user_options = [('tox-args=', 'a', "Arguments to pass to tox")]
|
|
|
|
|
|
|
|
def initialize_options(self):
|
2016-01-05 09:39:28 +00:00
|
|
|
"""initialize the user-options"""
|
2016-06-19 10:25:40 +00:00
|
|
|
test_command.initialize_options(self)
|
2015-12-30 15:58:28 +00:00
|
|
|
self.tox_args = None
|
|
|
|
|
|
|
|
def finalize_options(self):
|
2016-01-05 09:39:28 +00:00
|
|
|
"""finalize user-options"""
|
2016-06-19 10:25:40 +00:00
|
|
|
test_command.finalize_options(self)
|
2015-12-30 15:58:28 +00:00
|
|
|
self.test_args = []
|
|
|
|
self.test_suite = True
|
|
|
|
|
|
|
|
def run_tests(self):
|
2016-01-05 09:39:28 +00:00
|
|
|
"""run tox and pass on user-options"""
|
2016-01-08 02:34:14 +00:00
|
|
|
# import here, cause outside the eggs aren't loaded
|
2015-12-30 15:58:28 +00:00
|
|
|
import tox
|
|
|
|
import shlex
|
|
|
|
args = self.tox_args
|
|
|
|
if args:
|
|
|
|
args = shlex.split(self.tox_args)
|
|
|
|
errno = tox.cmdline(args=args)
|
|
|
|
sys.exit(errno)
|
2013-03-14 06:22:43 +00:00
|
|
|
|
|
|
|
setup(
|
2016-02-11 17:37:13 +00:00
|
|
|
name='python-escpos',
|
2016-03-09 11:01:02 +00:00
|
|
|
use_scm_version=True,
|
2016-02-11 17:37:13 +00:00
|
|
|
url='https://github.com/python-escpos/python-escpos',
|
|
|
|
download_url='https://github.com/python-escpos/python-escpos/archive/master.zip',
|
2013-03-14 06:22:43 +00:00
|
|
|
description='Python library to manipulate ESC/POS Printers',
|
2016-03-28 15:18:28 +00:00
|
|
|
bugtrack_url='https://github.com/python-escpos/python-escpos/issues',
|
2013-03-14 06:22:43 +00:00
|
|
|
license='GNU GPL v3',
|
2016-03-08 17:26:23 +00:00
|
|
|
long_description=read('README.rst'),
|
2016-04-02 18:12:36 +00:00
|
|
|
author='Manuel F Martinez and others',
|
2013-03-14 06:22:43 +00:00
|
|
|
author_email='manpaz@bashlinux.com',
|
2016-04-02 18:12:36 +00:00
|
|
|
maintainer='Patrick Kanzler',
|
|
|
|
maintainer_email='patrick.kanzler@fablab.fau.de',
|
|
|
|
keywords=[
|
|
|
|
'ESC/POS',
|
|
|
|
'thermoprinter',
|
|
|
|
'voucher printer',
|
|
|
|
'printing',
|
|
|
|
'receipt,',
|
|
|
|
],
|
|
|
|
platforms='any',
|
2016-06-20 14:41:46 +00:00
|
|
|
package_dir={"": "src"},
|
|
|
|
packages=find_packages(where="src", exclude=["tests", "tests.*"]),
|
2013-03-14 06:22:43 +00:00
|
|
|
package_data={'': ['COPYING']},
|
|
|
|
classifiers=[
|
2016-04-02 18:12:36 +00:00
|
|
|
'Development Status :: 4 - Beta',
|
|
|
|
'Environment :: Console',
|
2013-03-14 06:22:43 +00:00
|
|
|
'Intended Audience :: Developers',
|
2016-04-02 18:12:36 +00:00
|
|
|
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
|
|
|
|
'Operating System :: Microsoft :: Windows',
|
|
|
|
'Operating System :: MacOS',
|
|
|
|
'Operating System :: GNU/Linux',
|
2013-03-14 06:22:43 +00:00
|
|
|
'Programming Language :: Python',
|
2016-01-07 22:22:31 +00:00
|
|
|
'Programming Language :: Python :: 2',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
|
|
|
'Programming Language :: Python :: 3',
|
2016-04-02 18:12:36 +00:00
|
|
|
'Programming Language :: Python :: 3.3',
|
2016-01-07 22:22:31 +00:00
|
|
|
'Programming Language :: Python :: 3.4',
|
2016-04-02 18:12:36 +00:00
|
|
|
'Programming Language :: Python :: 3.5',
|
|
|
|
'Programming Language :: Python :: Implementation :: CPython',
|
|
|
|
'Programming Language :: Python :: Implementation :: PyPy',
|
2015-11-27 20:51:58 +00:00
|
|
|
'Topic :: System :: Peripherals',
|
2013-03-14 06:22:43 +00:00
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
2016-06-20 14:20:47 +00:00
|
|
|
'Topic :: Office/Business :: Financial :: Point-Of-Sale',
|
2013-03-14 06:22:43 +00:00
|
|
|
],
|
2015-11-27 20:51:58 +00:00
|
|
|
install_requires=[
|
2016-06-20 14:26:25 +00:00
|
|
|
'pyusb>=1.0.0',
|
2015-11-27 20:51:58 +00:00
|
|
|
'Pillow>=2.0',
|
|
|
|
'qrcode>=4.0',
|
|
|
|
'pyserial',
|
2016-03-03 03:21:35 +00:00
|
|
|
'six',
|
2016-03-15 19:00:19 +00:00
|
|
|
'appdirs',
|
2016-03-15 20:47:23 +00:00
|
|
|
'pyyaml',
|
2015-11-27 20:51:58 +00:00
|
|
|
],
|
2016-03-09 11:01:02 +00:00
|
|
|
setup_requires=[
|
|
|
|
'setuptools_scm',
|
|
|
|
],
|
2016-03-28 21:23:18 +00:00
|
|
|
tests_require=['tox', 'nose', 'scripttest'],
|
2015-12-30 15:58:28 +00:00
|
|
|
cmdclass={'test': Tox},
|
2016-06-23 14:53:58 +00:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'python-escpos = escpos.cli:main'
|
|
|
|
]
|
|
|
|
},
|
2013-03-14 06:22:43 +00:00
|
|
|
)
|