-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
44 lines (34 loc) · 842 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
40
41
42
43
44
[tool.poetry]
name = "klaxon"
version = "1.1.1"
description = "Use osascript to send notifications."
authors = ["Stephan Fitzpatrick <knowsuchagency@gmail.com>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/knowsuchagency/klaxon"
homepage = "https://pypi.org/project/klaxon/"
keywords = [
"mac",
"notifications",
"productivity"
]
[tool.poetry.scripts]
klaxon = 'klaxon:main'
[tool.poetry.dependencies]
python = "^3.6"
notifiers = {version = "^1.0",optional = true}
toml = {version = "^0.10.0"}
[tool.poetry.extras]
notifiers = ["notifiers"]
[tool.poetry.dev-dependencies]
pytest = "^3.0"
invoke = "^1.2"
mypy = "0.*"
black = "^19.3b0"
qypi = "^0.5.0"
pre-commit = "^1.20.0"
[tool.black]
max-line-length = 79
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"