1
0
mirror of https://gitlab.com/2-chainz/2chainz.git synced 2025-06-15 17:36:39 +00:00
2chainz/pyproject.toml

26 lines
526 B
TOML

[project]
name = "2chainz"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [{ name = "Anson", email = "anson@ansonbiggs.com" }]
requires-python = ">=3.13"
dependencies = ["fastapi[standard]>=0.115.12"]
[project.scripts]
two_chainz = "two_chainz:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/two_chainz"]
[dependency-groups]
dev = [
"nltk>=3.9.1",
"pytest>=8.3.5",
"ruff>=0.11.11",
]