22 lines
445 B
TOML
22 lines
445 B
TOML
[project]
|
|
name = "py-reza-logging"
|
|
version = "0.1.0"
|
|
description = "Reusable logging setup utilities"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = []
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools]
|
|
package-dir = {"" = "src"}
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[project.optional-dependencies]
|
|
rich = ["rich>=14.3.2"]
|
|
jalali = ["jdatetime>=5.2.0"]
|