From 567d712f673e6eb976c4a32189614208d8cd51e1 Mon Sep 17 00:00:00 2001 From: Florian Kaiser <37000563+flok@users.noreply.github.com> Date: Sun, 29 Nov 2020 13:18:40 +0100 Subject: [PATCH] Add install instructions --- README.md | 7 +++++++ setup.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 090530d..635f1c7 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,13 @@ control your dualsense through python. using the hid library this module impleme - hid >= 1.0.4 +# install + +Just install the package from pypi + +```bash +pip install pydualsense +``` # usage ```python diff --git a/setup.py b/setup.py index 3d61023..91ebcc4 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( long_description=long_description, long_description_content_type="text/markdown", url='https://github.com/flok/pydualsense', - author='Florian Kaiser', + author='Florian K', license='MIT License', packages=setuptools.find_packages(), install_requires=['hid>=1.0.4']