26 lines
514 B
TOML
26 lines
514 B
TOML
[project]
|
|
name = "tilde-wiki"
|
|
version = "1.1.0"
|
|
description = "terrible software"
|
|
url="https://github.com/tildetown/tilde-wiki"
|
|
authors = [
|
|
{ name = "nate smith", email = "vilmibm@protonmail.com" }
|
|
]
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"Markdown==2.6.11",
|
|
"GitPython==3.1.1",
|
|
"click==7.1.2",
|
|
"pygit2>=1.18",
|
|
]
|
|
|
|
[project.scripts]
|
|
wiki = "tildewiki.main:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/tildewiki"]
|