-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (27 loc) · 744 Bytes
/
pyproject.toml
File metadata and controls
32 lines (27 loc) · 744 Bytes
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
[tool.poetry]
name = "python-kasa-tkinter"
version = "0.1.0"
description = "GUI for TP-Link Kasa devices on the local network using Tkinter"
authors = ["Elliot Miller <elliot@bitoffdev.com>"]
packages = [
{ include = "kasatk" },
]
[tool.poetry.dependencies]
# Here, we restrict the dependencies to be compatible with PyInstaller
python = ">=3.7,<3.11"
python-kasa = "0.4.0.dev2"
typing-extensions = "^3.7.4.3"
[tool.poetry.dev-dependencies]
pyinstaller = "^4.9"
black = "^22.1.0"
flake8 = "^4.0.1"
flake8-black = "^0.2.4"
isort = "^5.10.1"
flake8-isort = "^4.1.1"
[tool.poetry.scripts]
kasatk = "kasatk.gui:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"