-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 1.62 KB
/
pyproject.toml
File metadata and controls
47 lines (42 loc) · 1.62 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>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pysmartlogger"
version = "1.3.0"
description = "A cross-platform Python library that adds colorful logging capabilities to the standard logging module"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Mohammad Rasol Esfandiari", email = "mrasolesfandiari@gmail.com"}
]
maintainers = [
{name = "Mohammad Rasol Esfandiari", email = "mrasolesfandiari@gmail.com"}
]
keywords = ["logging", "colors", "terminal", "cross-platform", "python"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Logging",
"Topic :: Terminals",
"Environment :: Console"
]
requires-python = ">=3.8"
[project.urls]
Homepage = "https://github.com/DeepPythonist/smartlogger"
Repository = "https://github.com/DeepPythonist/smartlogger"
Issues = "https://github.com/DeepPythonist/smartlogger/issues"
Changelog = "https://github.com/DeepPythonist/smartlogger/blob/master/CHANGELOG.md"
[tool.setuptools]
packages = ["smartlogger", "smartlogger.core", "smartlogger.config", "smartlogger.utils"]
[tool.setuptools.package-dir]
"" = "."