-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (39 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
47 lines (39 loc) · 1.33 KB
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "logfunc"
version = '3.0.0'
description = "An EASY TO USE function decorator for advanced logging of function execution, including arguments, return values, and execution time."
authors = [{name = "Cary Carter", email = "ccarterdev@gmail.com"}]
readme = "README.md"
license-files = [ 'LICENSE' ]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
[project.urls]
Documentation = "https://github.com/cc-d/logf/"
Homepage = "https://github.com/cc-d/logf/"
Repository = "https://github.com/cc-d/logf/"
Changelog = "https://github.com/cc-d/logf/blob/main/CHANGELOG.md"
[tool.setuptools]
packages = ["logfunc"]
[project.optional-dependencies]
dev = [
"pytest<8.4,>6",
"pytest-asyncio<0.27",
"pytest-cov<6.2",
"pytest-html<4.1.1",
"pytest-metadata<3.2",
"pytest-xdist<3.6.2",
]