forked from Galorhallen/govee-local-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (44 loc) · 1.26 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
51
52
53
54
[tool.poetry]
name = "govee-local-api"
version = "1.5.0"
description = "Library to communicate with Govee local API"
license = "Apache Software License 2.0"
readme = "README.md"
repository = "https://github.com/Galorhallen/govee-local-api"
authors = ["Galorhallen <andrea.ponte1987@gmail.com>"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
]
packages = [
{ include = "govee_local_api", from = "src" },
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/Galorhallen/govee-local-api/issues"
[tool.poetry_bumpversion.file."src/govee_local_api/__init__.py"]
# Duplicate the line above to add more files
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
[tool.black]
target-version = ["py310", "py311"]
[tool.ruff.isort]
force-sort-within-sections = true
known-first-party = [
"govee_local_api",
]
combine-as-imports = true
split-on-trailing-comma = false
[tool.pytest.ini_options]
pythonpath = "src"
addopts = [
"--import-mode=importlib",
"-v",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"