-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
39 lines (34 loc) · 1.34 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
"""Set up mystrom2mqtt gateway."""
import os
from setuptools import find_packages, setup
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "README.rst"), encoding="utf-8") as readme:
long_description = readme.read()
setup(
name="mystrom2mqtt",
version="0.1.0",
description="Transfer HTTP requests from myStrom devices to MQTT",
long_description=long_description,
url="https://github.com/home-assistant-ecosystem/mystrom2mqtt",
author="Fabian Affolter",
author_email="fabian@affolter-engineering.ch",
license="ASL 2.0",
install_requires=["python-multipart", "fastapi", "uvicorn", "toml", "netaddr", "asyncio_mqtt"],
packages=find_packages(),
zip_safe=True,
include_package_data=True,
entry_points={"console_scripts": [" mystrom2mqtt=mystrom2mqtt.__init__:run"]},
keywords="iot mystrom mqtt homeassistant",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Utilities",
],
)