-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
42 lines (38 loc) · 1.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
#!/usr/bin/env python3
"""
SPDX-License-Identifier: BSD-3-Clause
This file is part of zytemp-mqtt, https://github.com/patrislav1/zytemp_mqtt
Copyright (C) 2022 Patrick Huesmann <[email protected]>
"""
import setuptools
from pathlib import Path as path
from zytempmqtt import __version__
readme_contents = path('./README.md').read_text()
requirements = path('./requirements.txt').read_text().splitlines()
packages = setuptools.find_packages(include=['zytempmqtt'])
setuptools.setup(
name='zytemp_mqtt',
version=__version__,
author='Patrick Huesmann',
author_email='[email protected]',
url='https://github.com/patrislav1/zytemp_mqtt',
license='BSD',
description='MQTT interface for Holtek USB-zyTemp CO2 sensors',
long_description=readme_contents,
long_description_content_type='text/markdown',
keywords='zytemp holtek mqtt co2sensor homeassistant',
install_requires=requirements,
packages=packages,
classifiers=[
'Programming Language :: Python :: 3.6',
'Operating System :: Linux',
'Environment :: Console',
'License :: OSI Approved :: BSD License',
],
entry_points={
'console_scripts': [
'zytempmqtt=zytempmqtt.cli:main',
],
},
python_requires='>=3.6'
)