This repository has been archived on 2024-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
Colligere/pyproject.toml

35 lines
828 B
TOML

[project]
name = "colligere"
dynamic = ["version"]
authors = [
{ name="Titivillus", email="titivillus@hell.fun" },
]
description = "Tool for metadata in JSON Lines"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Environment :: Console",
]
dependencies = [
"pandas",
"uniplot",
]
[project.urls]
"Homepage" = "https://git.cuates.net/Titivillus/Colligere"
"Bug Tracker" = "https://git.cuates.net/Titivillus/Colligere/issues"
[project.scripts]
colligere = "colligere.cli:main"
[tool.hatch.version]
path = "colligere/__init__.py"
[build-system]
requires = ["hatchling>=1.9.0"]
build-backend = "hatchling.build"