Skip to content

Commit

Permalink
Version bump and remove unneccessary requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
ArdKuijpers committed Dec 27, 2020
1 parent fea89de commit 8298cc5
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 34 deletions.
2 changes: 1 addition & 1 deletion atagmqtt/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""atagmqtt module."""
__version__ = "0.1.0"
__version__ = "0.2.1"
NAME = "atagmqtt"
3 changes: 2 additions & 1 deletion atagmqtt/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
from pydantic import BaseSettings, Field
import homie
import atagmqtt
from .__init__ import __version__

class Settings(BaseSettings):
"""Application settings for the ATAG ONE MQTT bridge."""
Expand All @@ -23,7 +24,7 @@ class Settings(BaseSettings):
homie_implementation: str \
= f"Atag One Homie {atagmqtt.__version__} Homie 3 Version {homie.__version__}"
homie_fw_name: str = "AtagOne"
homie_fw_version: str = "0.1.0"
homie_fw_version: str = __version__

class Config:
"""Where to find the environment file containing the settings."""
Expand Down
32 changes: 32 additions & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
asgiref
astroid
async-timeout
atomicwrites
attrs
certifi
chardet
colorama
idna
importlib-metadata
isort
lazy-object-proxy
mccabe
more-itertools
multidict
netifaces
packaging
paho-mqtt
pluggy
ptvsd
py
pylint
pytest
python-dotenv
rope
six
typed-ast
wcwidth
wincertstore
wrapt
yarl
zipp
32 changes: 0 additions & 32 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,35 +1,3 @@
aiohttp
asgiref
astroid
async-timeout
atomicwrites
attrs
certifi
chardet
colorama
Homie3
idna
importlib-metadata
isort
lazy-object-proxy
mccabe
more-itertools
multidict
netifaces
packaging
paho-mqtt
pluggy
ptvsd
py
pydantic
pylint
pytest
python-dotenv
rope
six
typed-ast
wcwidth
wincertstore
wrapt
yarl
zipp

0 comments on commit 8298cc5

Please sign in to comment.