forked from rene-aguirre/pywinusb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (45 loc) · 1.81 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os, sys
try:
from setuptools import setup, find_packages
except ImportError:
sys.stdout.write("Setuptools or Distribute packages are required.")
sys.exit(1)
VERSION = '0.3.7'
README = os.path.join(os.path.dirname(__file__), 'README.rst')
CHANGES = os.path.join(os.path.dirname(__file__), 'CHANGES.rst')
long_description = open(README).read() + open(CHANGES).read() + 'nn'
setup(name = 'pywinusb',
version = VERSION,
description=("A package that simplifies USB/HID communications on windows"),
long_description=long_description,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Win32 (MS Windows)",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"License :: OSI Approved :: BSD License",
"Topic :: System :: Hardware",
"Topic :: System :: Hardware :: Hardware Drivers",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Software Development :: Embedded Systems",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Intended Audience :: Developers",
],
keywords='hid usb usages',
author='Rene F. Aguirre',
author_email='[email protected]',
url='https://github.com/rene-aguirre/pywinusb',
license='BSD',
packages=find_packages(),
package_data = {
# for all packages
'' : ['*.txt', '*.rst', 'examples/*.py'],
},
include_package_data = True,
namespace_packages=['pywinusb'],
)