diff --git a/README.md b/README.md index 525852f..6bc7b27 100644 --- a/README.md +++ b/README.md @@ -8,8 +8,11 @@ Python ZVT 700 interface (electronic cash registers) # Creating tags and releases Based on https://stackoverflow.com/a/7502821 -Update the version in [ecrterm/__init__.py](ecrterm/__init__.py), then create a tag using +Update the version in [ecrterm/__init__.py](ecrterm/__init__.py) and create a tag using ``` git tag -a v$(python setup.py --version) -m 'description of version' ``` -Push the tag to github and then use it to create a new release with the same version. +Then push the tag to github +``` +git push --tags +``` diff --git a/ecrterm/__init__.py b/ecrterm/__init__.py index cd7ca49..a6221b3 100644 --- a/ecrterm/__init__.py +++ b/ecrterm/__init__.py @@ -1 +1 @@ -__version__ = '1.0.1' +__version__ = '1.0.2' diff --git a/setup.py b/setup.py index 8030550..f1af8d9 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,30 @@ version=__version__, packages=find_packages(exclude=['ecrterm.tests']), license='LGPL-3', - install_requires=['pyserial'], + install_requires=[ + 'backcall==0.1.0', + 'decorator==4.3.0', + 'flake8==3.5.0', + 'ipython==6.3.1', + 'ipython-genutils==0.2.0', + 'isort==4.3.4', + 'jedi==0.12.0', + 'mccabe==0.6.1', + 'parso==0.2.0', + 'pexpect==4.5.0', + 'pickleshare==0.7.4', + 'prompt-toolkit==1.0.15', + 'ptyprocess==0.5.2', + 'pycodestyle==2.3.1', + 'pyflakes==1.6.0', + 'Pygments==2.2.0', + 'pyserial==3.4', + 'simplegeneric==0.8.1', + 'six==1.11.0', + 'traitlets==4.3.2', + 'wcwidth==0.1.7', + 'unittest_data_provider==1.0.1', + ], include_package_data=True, classifiers=[ 'License :: OSI Approved :: GNU Lesser General Public License v3 or '