Files
jambo/pyproject.toml
2025-04-10 01:14:22 -03:00

67 lines
1.3 KiB
TOML

[project]
name = "jambo"
dynamic = ["version"]
description = "Add your description here"
requires-python = ">=3.10,<4.0"
maintainers = [
{ name = "Vitor Hideyoshi", email = "vitor.h.n.batista@gmail.com" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
license = { file = "LICENSE" }
readme = "README.md"
# Project Dependencies
dependencies = [
"jsonschema>=4.23.0",
"pydantic>=2.10.6",
]
[dependency-groups]
dev = [
"coverage>=7.8.0",
"poethepoet>=0.33.1",
"pre-commit>=4.2.0",
"ruff>=0.11.4",
]
[project.urls]
homepage = "https://github.com/HideyoshiNakazone/jambo"
repository = "https://github.com/HideyoshiNakazone/jambo.git"
# POE Tasks
[tool.poe.tasks]
create-hooks = "bash .githooks/set-hooks.sh"
tests = "python -m unittest discover -s tests -v"
# Build System
[tool.hatch.version]
source = "vcs"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
# Linters
[tool.ruff.lint.isort]
section-order=[
"future",
"first-party",
"local-folder",
"third-party",
"standard-library",
]