From d968b304d95a0b9cc5620001b24219d43df8a2e8 Mon Sep 17 00:00:00 2001 From: Artur Spirin Date: Tue, 21 Jan 2020 00:55:55 -0800 Subject: [PATCH] Changelog: - Updated readme to exclude build files - Removed debug code left in the main module --- .gitignore | 5 ++++- pyPS4Controller.py | 3 --- setup.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 1163cb2..8069e5f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,5 @@ .idea -*.pyc \ No newline at end of file +*.pyc +build +dist +pyPS4Controller.egg-info \ No newline at end of file diff --git a/pyPS4Controller.py b/pyPS4Controller.py index 71b2c6a..a33ec7f 100644 --- a/pyPS4Controller.py +++ b/pyPS4Controller.py @@ -334,6 +334,3 @@ def right_arrow_release(): self.on_down_arrow_press() elif down_arrow_release(): self.on_down_arrow_release() - - -Controller(interface="/dev/input/js0").listen() diff --git a/setup.py b/setup.py index b07a5e7..d7012df 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="pyPS4Controller", - version="1.0.0", + version="1.0.1", author="Artur Spirin", author_email="as.no.replies@gmail.com", description="Simple hooks for PS4 controller",