https://github.com/apmorton/pyhidapi
Tip revision: 37d95430dfbb9032d62d7d9e030abab4235073cf authored by Austin Morton on 10 February 2024, 20:43:17 UTC
Release 1.0.6
Release 1.0.6
Tip revision: 37d9543
setup.py
from setuptools import setup, find_packages
import os
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()
version = '1.0.6'
setup(
name='hid',
version=version,
description='ctypes bindings for hidapi',
long_description=README,
long_description_content_type='text/markdown',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
keywords='',
author='Austin Morton',
author_email='amorton@juvsoft.com',
url='https://github.com/apmorton/pyhidapi',
license='MIT',
packages=find_packages(),
zip_safe=False,
test_suite='nose.collector'
)