-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (33 loc) · 942 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
[project]
name = "timed-decorator"
version = "1.6.0"
#requires-python = ">=3.10"
requires-python = ">=3.7"
description = "A timing decorator for python functions."
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "George Stoica", email = "[email protected]" },
]
maintainers = [
{ name = "George Stoica", email = "[email protected]" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
keywords = [
'timing',
]
[project.urls]
Repository = "https://github.com/ancestor-mithril/timed-decorator"
Issues = "https://github.com/ancestor-mithril/timed-decorator/issues"
[project.optional-dependencies]
dev = [
"pytest",
"flake8",
"torch"
]