- Added Microphone mute - changed MicrphoneLED function to boolean instead of int parameter - using diffrent hidapi library for interacting with c library to get length of reports from device for bt support later
19 lines
511 B
Python
19 lines
511 B
Python
from setuptools import setup
|
|
import setuptools
|
|
|
|
with open("README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
setup(
|
|
name='pydualsense',
|
|
version='0.5.2',
|
|
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=['hidapi-usb', 'cffi']
|
|
)
|