forked from padelt/temper-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (29 loc) · 957 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
30
from io import open
from setuptools import setup
setup(
name='temperusb',
author='Philipp Adelt',
author_email='autosort-github@philipp.adelt.net ',
url='https://github.com/padelt/temper-python',
version='1.6.0',
description='Reads temperature from TEMPerV1 devices (USB 0c45:7401)',
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
packages=['temperusb'],
install_requires=[
'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',
],
)