Compare commits

..

2 Commits

Author SHA1 Message Date
Sebastian Lohff 988551b3aa Require python3 2019-03-17 02:36:05 +01:00
Sebastian Lohff 5e3fa977db Fix typo in install url 2019-03-17 02:35:09 +01:00
2 changed files with 4 additions and 2 deletions

View File

@ -10,7 +10,8 @@ Features:
## Installation ## Installation
```shell ```shell
$ pip install git+https://git.someserver.de/seba/fynnwacom/ # python3 based pip is required (check with pip --version)
$ pip install git+https://git.someserver.de/seba/fynncom/
``` ```
## Configuration ## Configuration

View File

@ -7,7 +7,8 @@ setup(name='fynncom',
description='Wacom tablet button configuration tool', description='Wacom tablet button configuration tool',
author='Sebastian Lohff', author='Sebastian Lohff',
author_email='seba@someserver.de', author_email='seba@someserver.de',
url='https://git.someserver.de/seba/fynnwacom', url='https://git.someserver.de/seba/fynncom/',
python_requires='>=3.5',
packages=['fynncom'], packages=['fynncom'],
install_requires=['click', 'pyyaml'], install_requires=['click', 'pyyaml'],
entry_points={ entry_points={