-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
37 lines (32 loc) · 954 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
[tool.poetry]
name = "bar-gmail"
version = "1.0.5"
description = "Get notifications and unread messages count from Gmail (Waybar/Polybar module)"
license = "MIT"
readme = "README.md"
homepage = "https://github.com/crabvk/bar-gmail"
authors = ["Vyacheslav Konovalov <crabvk@protonmail.com>"]
keywords = ["waybar", "polybar", "gmail"]
classifiers = [
"Environment :: Console",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License"
]
[tool.poetry.scripts]
bar-gmail = "bar_gmail:cli"
[tool.poetry.dependencies]
python = "^3.10.7"
google-api-python-client = "^2.100.0"
google-auth-httplib2 = "^0.1.1"
google-auth-oauthlib = "^1.1.0"
dasbus = "^1.7"
pygobject = "^3.46.0"
[tool.poetry.group.dev.dependencies]
pip = "^23.2.1"
autopep8 = "^2.0.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.autopep8]
max_line_length = 100