26 lines
548 B
TOML
26 lines
548 B
TOML
|
[project]
|
||
|
name = "hypopub"
|
||
|
version = "0.1.0"
|
||
|
description = "A lightweight bridge between hypothes.is and micropub"
|
||
|
authors = [
|
||
|
{name = "James Ravenscroft", email = "ravenscroftj@gmail.com"},
|
||
|
]
|
||
|
dependencies = [
|
||
|
"flask>=2.2.2",
|
||
|
"Flask-Micropub>=0.2.8",
|
||
|
"filelock>=3.8.0",
|
||
|
"python-dotenv>=0.21.0",
|
||
|
"requests>=2.28.1",
|
||
|
"atoma>=0.0.17",
|
||
|
"tqdm>=4.64.1",
|
||
|
]
|
||
|
requires-python = ">=3.9"
|
||
|
readme = "README.md"
|
||
|
license = {text = "MIT"}
|
||
|
|
||
|
[build-system]
|
||
|
requires = ["pdm-pep517>=1.0.0"]
|
||
|
build-backend = "pdm.pep517.api"
|
||
|
|
||
|
[tool.pdm]
|