-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (66 loc) · 2.17 KB
/
pyproject.toml
File metadata and controls
76 lines (66 loc) · 2.17 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "chromologger"
version = "0.1.9.post2"
description = "Chromologger está diseñado para facilitar la creación de registros (logs) en aplicaciones desarrolladas con Python"
readme = { file = "README.md", content-type = "text/markdown", charset = "utf-8" }
license = "MIT"
authors = [{ name = "dev2forge", email = "support@dev2forge.software" }]
maintainers = [{ name = "tutosrive", email = "tutosrive@dev2forge.software" }]
keywords = [
"logs",
"dev2forge",
"logging",
"log",
"logger",
"exception logging",
"error logging",
"python logs",
"file logger",
"structured logs",
"debugging",
"monitoring",
"chromologger",
"simple logger",
"python utility",
"console logger",
"developer tool",
"log formatter",
"log file"
]
requires-python = ">=3.8"
dependencies = [
"chromolog==0.2.5"
]
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Debuggers",
"Topic :: System :: Monitoring",
"Topic :: System :: Logging",
"Topic :: Utilities",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
"Environment :: Console",
"Environment :: Other Environment",
]
[tool.setuptools]
package-dir = {"" = "src"}
packages = { find = { where = ["src"] } }
[project.urls]
"Homepage" = "https://docs.dev2forge.software/chromologger/"
"Repository" = "https://github.com/Dev2Forge/chromologger/"
"YouTube" = "https://www.youtube.com/@dev2forge"
"Issues" = "https://github.com/Dev2Forge/chromologger/issues/"
"Changelog" = "https://github.com/Dev2Forge/chromologger/blob/main/CHANGELOG.md"