27 lines
482 B
TOML
27 lines
482 B
TOML
|
|
[project]
|
||
|
|
name = "categorizelabel"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "A label categorization project"
|
||
|
|
authors = [
|
||
|
|
{name = "User",email = "user@example.com"}
|
||
|
|
]
|
||
|
|
readme = "README.md"
|
||
|
|
requires-python = "^3.12"
|
||
|
|
dependencies = [
|
||
|
|
]
|
||
|
|
|
||
|
|
|
||
|
|
[build-system]
|
||
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
||
|
|
build-backend = "poetry.core.masonry.api"
|
||
|
|
|
||
|
|
[tool.poetry.group.dev.dependencies]
|
||
|
|
black = "^25.9.0"
|
||
|
|
flake8 = "^7.3.0"
|
||
|
|
pre-commit = "^4.3.0"
|
||
|
|
|
||
|
|
[tool.black]
|
||
|
|
line-length = 88
|
||
|
|
target-version = ['py312']
|
||
|
|
|