-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
33 lines (29 loc) · 925 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
[tool.poetry]
name = "bar-protonmail"
version = "1.2.1"
description = "Get notifications and unread messages count from ProtonMail (Waybar/Polybar module)"
license = "MIT"
readme = "README.md"
homepage = "https://github.com/crabvk/bar-protonmail"
authors = ["Vyacheslav Konovalov <[email protected]>"]
keywords = ["waybar", "polybar", "protonmail"]
classifiers = [
"Environment :: Console",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License"
]
[tool.poetry.scripts]
bar-protonmail = "bar_protonmail:cli"
[tool.poetry.dependencies]
python = "^3.10"
dnspython = "^2.2.1"
proton-client = { git = "https://github.com/crabvk/proton-python-client.git" }
dasbus = "^1.7"
pygobject = "^3.46.0"
pysocks = "^1.7.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.autopep8]
max_line_length = 100