Initial release

This commit is contained in:
sonny 2020-12-26 16:37:56 +01:00
parent 1760b496c6
commit 7bcb700dfa
12 changed files with 865 additions and 26 deletions

View file

@ -8,11 +8,21 @@ license = "GPL-3.0"
[tool.poetry.dependencies]
python = "^3.7"
click = "^7.1.2"
python-dotenv = "^0.15.0"
requests = "^2.25.1"
sentry_sdk = {version = "^0.19.5", optional = true}
[tool.poetry.extras]
sentry = ["sentry_sdk"]
[tool.poetry.dev-dependencies]
black = "^20.8b1"
isort = "^5.6.4"
autoflake = "^1.4"
coverage = "^5.3.1"
[tool.poetry.scripts]
listen = "ip_listener.cli:run"
[build-system]
requires = ["poetry>=0.12"]