-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
56 lines (51 loc) · 1.39 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[project]
authors = [
{ name = "Noortheen Raja J", email = "jnoortheen@gmail.com" },
]
requires-python = ">=3.7"
dependencies = [
"xonsh>=0.10",
"notify-py>=0.3.3; python_version >= \"3.6\" and python_version < \"4.0\"",
]
name = "xontrib-cmd-durations"
version = "0.3.2"
description = "Send notification once long running command is finished. Add duration PROMP_FIELD."
readme = "README.md"
keywords = [
"xontrib",
"xonsh",
]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: System :: Shells",
"Topic :: System :: System Shells",
"Topic :: Terminals",
"Programming Language :: Python",
"Topic :: Utilities",
"Topic :: Software Development",
"Programming Language :: Python :: 3",
]
[project.optional-dependencies]
dev = [
"pytest",
"black",
]
[project.license]
text = "MIT"
[project.urls]
Documentation = "https://github.com/jnoortheen/xontrib-cmd-durations/blob/master/README.md"
Code = "https://github.com/jnoortheen/xontrib-cmd-durations"
"Issue tracker" = "https://github.com/jnoortheen/xontrib-cmd-durations/issues"
repository = "https://github.com/jnoortheen/xontrib-cmd-durations"
[tool.pdm.build]
includes = [
"xontrib",
]
[build-system]
requires = [
"pdm-pep517>=1.0.0",
]
build-backend = "pdm.pep517.api"