forked from spacemanspiff2007/sml2mqtt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
74 lines (63 loc) · 2.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import typing
from pathlib import Path
import setuptools # type: ignore
# Load version number without importing HABApp
def load_version() -> str:
version: typing.Dict[str, str] = {}
with open("src/sml2mqtt/__version__.py") as fp:
exec(fp.read(), version)
assert version['__version__'], version
return version['__version__']
def load_req() -> typing.List[str]:
# When we run tox tests we don't have this file available so we skip them
req_file = Path(__file__).with_name('requirements_setup.txt')
if not req_file.is_file():
return ['']
with req_file.open() as f:
return f.readlines()
__version__ = load_version()
print(f'Version: {__version__}')
print('')
# When we run tox tests we don't have these files available so we skip them
readme = Path(__file__).with_name('readme.md')
long_description = ''
if readme.is_file():
with readme.open("r", encoding='utf-8') as fh:
long_description = fh.read()
setuptools.setup(
name="sml2mqtt",
version=__version__,
author="spaceman_spiff",
# author_email="",
description="A sml (Smart Message Language) to MQTT bridge",
keywords=[
'mqtt',
'sml',
'Smart Message Language',
'energy meter'
],
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/spacemanspiff2007/sml2mqtt",
project_urls={
'GitHub': 'https://github.com/spacemanspiff2007/sml2mqtt',
},
packages=setuptools.find_packages(where='src', exclude=['tests*']),
package_dir={'': 'src'},
install_requires=load_req(),
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: AsyncIO",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Home Automation"
],
entry_points={
'console_scripts': [
'sml2mqtt = sml2mqtt.main:main'
]
}
)