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

PCKG automatically generate version from git-tags

* uses setuptools_scm
This commit is contained in:
Patrick Kanzler
2016-03-09 12:01:02 +01:00
parent e49c35abc1
commit 64e63b0180
3 changed files with 10 additions and 4 deletions

View File

@@ -39,7 +39,7 @@ class Tox(TestCommand):
setup(
name='python-escpos',
version='1.0.9-dev',
use_scm_version=True,
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',
@@ -72,6 +72,9 @@ setup(
'pyserial',
'six',
],
setup_requires=[
'setuptools_scm',
],
tests_require=['tox', 'nose'],
cmdclass={'test': Tox},
)