mirror of
https://gitlab.com/2-chainz/2chainz.git
synced 2025-06-16 09:56:40 +00:00
26 lines
570 B
TOML
26 lines
570 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 = [
|
|
"apscheduler>=3.11.0",
|
|
"atproto>=0.0.61",
|
|
"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 = ["httpx>=0.28.1", "pytest>=8.3.5", "ruff>=0.11.11"]
|