-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (33 loc) · 867 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
[tool.poetry]
name = "calendarlight"
version = "0.1.0"
description = "Control USB connected presence lights from Google Calendar events."
authors = ["Volkan Gurel <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
busylight-for-humans = {path = "../busylight"}
google-api-python-client = "^2.71.0"
google-auth-httplib2 = "^0.1.0"
google-auth-oauthlib = "^0.8.0"
typer = {extras = ["all"], version = "^0.7.0"}
loguru = "^0.6.0"
pydantic = "^1.10.4"
pyyaml = "^6.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.0.213"
black = "^22.12.0"
[tool.poetry.scripts]
calendarlight="calendarlight.__main__:app"
[tool.black]
line-length = 120
[tool.ruff]
line-length = 120
select = [
"F", # pyflakes
"I", # isort
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"