Skip to content

Commit

Permalink
Merge pull request #12 from wirelane/feature/fix_install_requires
Browse files Browse the repository at this point in the history
add packages required by ecrterm to setup.py to not have to install them explicitly to get ecrterm to work
  • Loading branch information
Curd Becker authored Jul 4, 2023
2 parents cce8f4f + b3b98b8 commit d78548f
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 4 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
2 changes: 1 addition & 1 deletion ecrterm/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.0.1'
__version__ = '1.0.2'
25 changes: 24 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 '
Expand Down

0 comments on commit d78548f

Please sign in to comment.