-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
23 lines (21 loc) · 803 Bytes
/
pyproject.toml
File metadata and controls
23 lines (21 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[project]
name = "logging_handler"
version = "1.0.8"
description = "Python Library to quickly create logging handlers"
authors = [{name = "Thomas Dunteman", email= "git@learningtopi.com"}]
keywords = ["logging", "syslog"]
readme = "README.md"
requires-python =">=3.6"
classifiers = [
"Topic :: System :: Logging",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3"]
dependencies = []
[project.urls]
"Homepage" = "https://www.learningtopi.com/python-modules-applications/python_logging_handler/"
"Bug Tracker" = "https://github.com/LearningToPi/logging_handler/issues"
"Source Code" = "https://github.com/LearningToPi/logging_handler"
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"