32 lines
659 B
TOML
32 lines
659 B
TOML
[project]
|
|
name = "ise-logparser"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
authors = [
|
|
{ name = "Mira Kristipati", email = "akristip@cisco.com" }
|
|
]
|
|
dependencies = [
|
|
"parsy>=2.1",
|
|
"icecream>=2.1.3",
|
|
"python-dotenv>=1.0.1",
|
|
"mypy>=1.11.1",
|
|
"setuptools>=72.1.0",
|
|
"colorama>=0.4.6",
|
|
"types-colorama>=0.4.15.20240311",
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">= 3.8"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.rye]
|
|
managed = true
|
|
dev-dependencies = []
|
|
|
|
[tool.hatch.metadata]
|
|
allow-direct-references = true
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/ise_logparser"]
|