-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (26 loc) · 889 Bytes
/
pyproject.toml
File metadata and controls
33 lines (26 loc) · 889 Bytes
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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["pyhunt"]
[project.scripts]
hunt = "pyhunt.cli:main"
[project]
name = "pyhunt"
authors = [{ name = "EasyDev", email = "easydevv@gmail.com" }]
description = "Lightweight Python logging tool for visual call tracing, tree-structured colored logs, and easy debugging with a simple decorator. Optimized for both standard and AI-generated codebases. "
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = ["dotenv>=0.9.9"]
version = "1.2.0"
[project.urls]
source = "https://github.com/easydevv/pyhunt"
[dependency-groups]
dev = ["pytest-asyncio"]
[tool.pytest.ini_options]
testpaths = ["test"]