-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 790 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (23 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
setup(
name='hidraw-pure',
description='Pure-python linux hidraw bindings',
keywords='linux human interface device HID hidraw',
version='1.2',
author='Vincent Pelletier',
author_email='plr.vincent@gmail.com',
url='https://github.com/vpelletier/python-hidraw',
license='GPL 2+',
packages=find_packages(),
classifiers=[
'Intended Audience :: Information Technology',
'License :: OSI Approved :: GNU General Public License (GPLv2+)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: System :: Hardware :: Hardware Drivers',
],
install_requires=[
'ioctl-opt',
],
)