forked from padelt/temper-python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (28 loc) · 954 Bytes
/
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
from setuptools import setup
setup(
name='temperusb',
author='Philipp Adelt',
author_email='[email protected] ',
url='https://github.com/padelt/temper-python',
version='1.5.0',
description='Reads temperature from TEMPerV1 devices (USB 0c45:7401)',
long_description=open('README.md').read(),
packages=['temperusb'],
install_requires=[
'pyusb>=1.0.0rc1',
],
dependency_links = ['git+https://github.com/walac/pyusb.git#egg=pyusb-1.0.0rc1'],
entry_points={
'console_scripts': [
'temper-poll = temperusb.cli:main',
'temper-snmp = temperusb.snmp:main'
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
)