-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
49 lines (45 loc) · 1.51 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
try:
import pypandoc
LDESC = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError, RuntimeError):
LDESC = ''
setup(
name = 'ut61e',
version = '1.0.2',
description = 'Captures and Interprets Data from your Digital Multimeter Uni-T UT61E.',
long_description = LDESC,
author = 'Philipp Klaus',
author_email = 'philipp.l.klaus@web.de',
packages = ['ut61e'],
entry_points = {
'console_scripts': [
'es51922 = ut61e.es51922:main',
'he2325u_hidapi = ut61e.he2325u_hidapi:main',
'he2325u_pyusb = ut61e.he2325u_pyusb:main',
],
},
url = 'https://github.com/pklaus/ut61e_python',
license = 'GPL',
install_requires = [],
extras_require = {
'access to he2325u_hidapi.py': ["hidapi >= 0.7.0-1"],
'access to he2325u_pyusb.py': ["pyusb >= 1.0.0"],
},
keywords = 'UNI-T UT61E DMM digital multimeter',
classifiers = [
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Topic :: System :: Hardware :: Hardware Drivers',
'Topic :: Scientific/Engineering',
]
)