1
0
mirror of https://github.com/python-escpos/python-escpos synced 2025-08-24 09:03:34 +00:00

improve packaging and test environment

This commit is contained in:
Patrick Kanzler
2016-02-11 18:37:13 +01:00
parent 3e200a86b9
commit d672ca1268
2 changed files with 13 additions and 11 deletions

View File

@@ -38,10 +38,10 @@ class Tox(TestCommand):
sys.exit(errno)
setup(
name='escpos',
version='1.0.9',
url='https://github.com/manpaz/python-escpos',
download_url='https://github.com/manpaz/python-escpos.git',
name='python-escpos',
version='1.0.9-dev',
url='https://github.com/python-escpos/python-escpos',
download_url='https://github.com/python-escpos/python-escpos/archive/master.zip',
description='Python library to manipulate ESC/POS Printers',
license='GNU GPL v3',
long_description=read('README'),
@@ -71,6 +71,6 @@ setup(
'qrcode>=4.0',
'pyserial',
],
tests_require=['tox'],
tests_require=['tox', 'nose'],
cmdclass={'test': Tox},
)