-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
29 lines (26 loc) · 937 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, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as f:
required = f.read().splitlines()
setup(
name="home-assistant-findmy",
version="1.1.0",
author="muehlt",
author_email="[email protected]",
description="A python script that reads local FindMy cache files to broadcast device locations (including those of AirTags, AirPods, Apple Watches, iPhones) to Home Assistant via MQTT.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/muehlt/home-assistant-findmy",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
],
entry_points={
'console_scripts': [
'findmy = findmy:main',
],
},
install_requires=required,
python_requires='>=3.6',
)