-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
63 lines (54 loc) · 1.22 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
55
56
57
58
59
60
61
62
63
[tool.poetry]
authors = ["spezifisch <spezifisch-gpl.7e6@below.fr>"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Operating System :: OS Independent",
]
description = ""
homepage = "https://github.com/spezifisch/divo"
include = [
"LICENSE",
]
keywords = ["divoom", "pixoo", "timebox", "evo"]
license = "GPL-3.0-only"
name = "divo"
readme = "README.md"
repository = "https://github.com/spezifisch/divo"
version = "0.1.0"
[tool.poetry.dependencies]
Pillow = "^9.0.0"
click = "^8.0.3"
colorconsole = "^0.7.2"
loguru = ">=0.5.3,<0.7.0"
pyserial = "^3.5"
python = "^3.7"
[tool.poetry.dev-dependencies]
black = "^21.12b0"
coverage = "^6.2"
flake8 = "^4.0.1"
mypy = "^0.931"
pre-commit = "^2.17.0"
pytest = "^6.2.5"
[tool.poetry.scripts]
divo = "divo.main:cli"
[tool.black]
line-length = 119
[tool.coverage.run]
branch = true
source = ["divo"]
[tool.coverage.report]
exclude_lines = ["@abstractmethod", "@abc.abstractmethod", "if __name__ == .__main__.:"]
show_missing = true
[tool.isort]
profile = "black"
[[tool.mypy.overrides]]
ignore_missing_imports = true
module = [
"colorconsole",
"PIL",
"serial",
]
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]