Initial commit

This commit is contained in:
sonny 2020-12-26 16:23:17 +01:00
commit 1760b496c6
3 changed files with 413 additions and 0 deletions

19
pyproject.toml Normal file
View file

@ -0,0 +1,19 @@
[tool.poetry]
name = "ip-listener"
version = "0.1.0"
description = "Listens for changes about the current public IP and acts upon it."
authors = ["sonny <sonnyba871@gmail.com>"]
license = "GPL-3.0"
[tool.poetry.dependencies]
python = "^3.7"
click = "^7.1.2"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
isort = "^5.6.4"
autoflake = "^1.4"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"