-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (34 loc) · 1.18 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
[tool.poetry]
name = "py3status-github-notifications"
version = "0.1.14"
description = "py3status module to show your Github notifications"
authors = ["mcgillij <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/mcgillij/py3status-github-notifications"
repository = "https://github.com/mcgillij/py3status-github-notifications"
documentation = "https://github.com/mcgillij/py3status-github-notifications"
keywords = ["github", "notifications", "py3status", "i3", "git"]
classifiers = [
"Environment :: X11 Applications",
"Intended Audience :: End Users/Desktop",
"Operating System :: POSIX :: Linux",
"Topic :: Desktop Environment :: Window Managers",
"Topic :: System :: Monitoring",
"Topic :: Software Development :: Version Control :: Git",
]
[tool.poetry.plugins."py3status"]
module = "py3status_github_notifications.github_notifications"
[tool.poetry.dependencies]
python = "^3.11 || ^3.12 || ^3.13"
PyGithub = "^2.00"
py3status = "^3.45"
PyJWT = "^2.8.0"
[tool.poetry.dev-dependencies]
pytest = "*"
black = "*"
flake8 = "*"
pylint = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"