-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (37 loc) · 1.12 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
#!/usr/bin/python3
# coding: utf-8
import os
from setuptools import setup, find_packages
NAME = "z_wave_ts_silabs"
VERSION = "0.3.2"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
# see https://setuptools.pypa.io/en/latest/userguide/quickstart.html
# Utility function to read the README.md file for the long_description.
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
setup(
name=NAME,
version=VERSION,
python_requires='>=3.12',
description="Python interface for Silicon Labs Z-Wave devices",
author="Luis Thomas",
author_email="[email protected]",
license="Copyright 2024 Silicon Laboratories Inc. www.silabs.com",
url="https://github.com/SiliconLabs/z-wave-ts-silabs",
keywords=["Z-Wave"],
install_requires=[
"paho-mqtt",
"pytest"
],
entry_points={
'pytest11': ['z_wave_ts_silabs = z_wave_ts_silabs.fixtures']
},
packages=find_packages(),
long_description=read("README.md"),
include_package_data=True
)