-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (43 loc) · 1.31 KB
/
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
42
43
44
45
46
47
48
49
50
[tool.poetry]
name = "lunaticoastro-dragonfly-controller"
version = "0.14.0"
description = "Python Lib to control lunaticoastro dragonfly"
readme = "README.md"
authors = ["Robert Bradley <[email protected]>"]
packages = [
{ include = "dragonfly_dome", from = "." },
]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
uvicorn = "^0.29.0"
fastapi = "^0.111.0"
[tool.poetry.dev-dependencies]
black = "*"
coverage = "*"
flake8 = "*"
jsonschema = "*"
pylint = "*"
pytest = "*"
setuptools = "*"
pytest-bdd = "*"
allure-pytest-bdd = "*"
pytest-xdist = {extras = ["psutil"], version = "*"}
pyhamcrest = "*"
[tool.poetry.scripts]
lunaticoastro_dragonfly_controller = "dragonfly_dome:controller"
[tool.pytest.ini_options]
pythonpath = ["."] # This may still be unnecessary depending on your structure
[tool.poetry.urls]
issues = "https://github.com/robbrad/lunaticoastro-dragonfly-controller/issues"
[build-system]
requires = ["poetry-core>=1.2.0"]
build-backend = "poetry.core.masonry.api"
[tool.commitizen]
major_version_zero = true
version_provider = "poetry"
version_scheme = "semver"
version_files = [
"home-assistant/custom_components/lunaticoastro-dragonfly-controller/manifest.json:version",
"home-assistant/custom_components/lunaticoastro-dragonfly-controller/manifest.json:requirements",
"swagger.yaml:version"
]