Files
pydualsense/setup.py
Florian Kaiser b9d0edf08e basic input reading done, restructured code
- only using 1 thread for reading inputs and updating the controller
- reading the inputs mostly done, gyro and accel missing
2020-11-29 17:19:56 +01:00

19 lines
507 B
Python

from setuptools import setup
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='pydualsense',
version='0.1.0',
description='use your DualSense (PS5) controller with python',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/flok/pydualsense',
author='Florian K',
license='MIT License',
packages=setuptools.find_packages(),
install_requires=['hid>=1.0.4']
)