-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (38 loc) · 1.24 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "delayviewer"
description = "Several mechanisms to time and view progress of execution/runtime delays in Python"
readme = {file = "README.md", content-type = "text/markdown"}
authors = [{name = "Ed Waldner", email = "[email protected]"},]
maintainers = [{name = "Ed Waldner", email = "[email protected]"},]
# dynamic = ["version"]
version = "0.1.1"
requires-python = ">=3.9"
dependencies = [
"argcomplete",
"quickcolor",
"showexception"
]
keywords = [
"util", "utility"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Topic :: Utilities",
]
[project.urls]
Homepage = "https://github.com/ew98/delayviewer"
Documentation = "https://github.com/ew98/delayviewer/wiki/DelayViewer"
Issues = "https://github.com/ew98/delayviewer/issues"
[project.scripts]
dlyview = "delayviewer.delayviewer_cli:cli"