-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 848 Bytes
/
pyproject.toml
File metadata and controls
32 lines (29 loc) · 848 Bytes
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
[tool.poetry]
name = "notify_py"
version = "0.3.42"
description = "Cross-platform desktop notification library for Python"
authors = ["Mustafa Mohamed <mustafa@ms7m.me>"]
repository = "https://github.com/ms7m/notify-py"
readme = "README.md"
license = "MIT"
documentation = "https://github.com/ms7m/notify-py"
include = ["notifypy/py-logo.png", "notifypy/example_notification_sound.wav", "notifypy/os_notifiers/binaries/*"]
packages = [
{ include = "notifypy" },
]
[tool.poetry.dependencies]
python = ">=3.6,<4.0"
loguru = ">=0.5.3,<=0.6.0"
jeepney = [
{ version = '*', platform = 'linux' },
]
[tool.poetry.dev-dependencies]
pytest = "6.2.5"
black = "^20.8b1"
typed-ast = "1.5.2"
pylint = "*"
[tool.poetry.scripts]
notifypy = "notifypy.cli:entry"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"