Files
pydualsense/setup.py
Florian Kaiser a55fe59d2b 0.0.4
fixed structure of the package
added background send thread
added close function for terminating the background thread
2020-11-29 12:49:16 +01:00

19 lines
516 B
Python

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