Switched to Poetry for dependency management
This commit is contained in:
parent
dac9d81777
commit
0beaab9549
2 changed files with 20 additions and 16 deletions
20
pyproject.toml
Normal file
20
pyproject.toml
Normal file
|
@ -0,0 +1,20 @@
|
|||
[tool.poetry]
|
||||
name = "mash-server"
|
||||
version = "0.1.0"
|
||||
description = "Max' Smart Home"
|
||||
authors = ["Max <m.giller.dev@gmail.com>"]
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.10"
|
||||
phue = "^1.1"
|
||||
fritzconnection = "^1.14.0"
|
||||
fastapi = "^0.115.6"
|
||||
requests = "^2.32.3"
|
||||
paho-mqtt = "^2.1.0"
|
||||
uvicorn = {extras = ["standard"], version = "^0.34.0"}
|
||||
|
||||
[tool.poetry.dev-dependencies]
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core>=1.0.0"]
|
||||
build-backend = "poetry.core.masonry.api"
|
|
@ -1,16 +0,0 @@
|
|||
# For Philips Hue
|
||||
phue
|
||||
|
||||
# For Fritz.Box API
|
||||
fritzconnection
|
||||
|
||||
# API
|
||||
requests
|
||||
fastapi
|
||||
uvicorn[standard]
|
||||
|
||||
# Clients
|
||||
requests
|
||||
|
||||
# Config file
|
||||
pyyaml
|
Loading…
Reference in a new issue