-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
58 lines (55 loc) · 2.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
47
48
49
50
51
52
53
54
55
56
57
58
from setuptools import setup
setup(
name="pd9530",
py_modules=["pd9530"],
version="1.0.3",
description="Library to interact with a PD9530 handheld scanner",
author="Markus Ullmann",
author_email="[email protected]",
url="http://github.com/jokey2k/PD9530",
keywords=["scanner", "windows", "usb", "handheld"],
license='BSD-3',
install_requires=[
'pyserial'
],
extras_require = {
'sendkeys': ["pywin32"]
},
platform="any",
zip_safe=False,
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Handhelds/PDA's",
"Environment :: Other Environment",
"Environment :: Plugins",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: Customer Service",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Manufacturing",
"License :: OSI Approved :: BSD License",
"Operating System :: Microsoft :: Windows :: Windows 7",
"Operating System :: Microsoft :: Windows :: Windows Server 2003",
"Operating System :: Microsoft :: Windows :: Windows Server 2008",
"Operating System :: Microsoft :: Windows :: Windows XP",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Home Automation",
"Topic :: Multimedia :: Graphics :: Capture :: Scanners",
"Topic :: Office/Business :: Financial :: Point-Of-Sale",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Terminals :: Serial",
"Topic :: Utilities",
],
long_description="""Library to use Datalogic(r) PowerScan(r) PD-9530 with USB-COM or RS232 on Windows(r) and UNIXes
The package depends on pySerial for communication and pywin32 for sending keystrokes.
PowerScan and DataLogic are registered trademarks of Datalogic ADC. in many countries, including the U.S.A. and the E.U.
Windows is a registered trademark by Microsoft Corporation
""",
)