-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
executable file
·46 lines (34 loc) · 1.27 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="hidparser",
version="0.0.7",
description="HID Descriptor Parser",
license="MIT",
author="Roman Vaughan",
url="https://github.com/NZSmartie/PyHIDParser",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.0",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Software Development :: Embedded Systems",
"Topic :: System :: Hardware",
"Topic :: System :: Hardware :: Hardware Drivers",
"Topic :: Utilities"
],
keywords="hid device usb parse descriptor",
packages=["hidparser"],
install_requires=[
"bitstring>=3.1.4"
]
)