-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (35 loc) · 914 Bytes
/
pyproject.toml
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
33
34
35
36
37
38
39
40
41
[tool.poetry]
name = "python-unfoldedcircle"
version = "0.0.3"
description = "Python library to interact with Unfolde Circle Remote Two"
authors = ["Matthias Grüter <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/mattgruter/python-unfoldedcircle"
packages = [{include = "unfoldedcircle"}]
[tool.poetry.scripts]
unfoldedcircle = "unfoldedcircle.cli:main"
[tool.poetry.dependencies]
python = ">=3.11,<4.0"
httpx = "^0.25.0"
click = "^8.1.7"
zeroconf = "^0.119.0"
[tool.poetry.group.dev.dependencies]
ipython = "^8.16.1"
pytest = "^7.4.2"
autopep8 = "^2.0.4"
black = "^23.9.1"
pylint = "^3.0.1"
flake8 = "^6.1.0"
ipykernel = "^6.25.2"
bandit = "^1.7.5"
safety = "^2.3.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
skip_gitignore = true
line_length = 88