mirror of
https://github.com/Cian-H/I-Form_Research_Server_Docs.git
synced 2025-12-22 22:22:03 +00:00
31 lines
733 B
TOML
31 lines
733 B
TOML
[tool.poetry]
|
|
name = "research-server-docs"
|
|
version = "0.1.0"
|
|
description = "Documentation for the I-Form Research Server system"
|
|
authors = ["Cian Hughes <cian.hughes@dcu.ie>"]
|
|
readme = "README.md"
|
|
license = "MIT"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.12,<4.0"
|
|
i-form-server-node-deployer = {git = "https://github.com/Cian-H/I-Form_Server_Node_Deployer"}
|
|
mkdocs = "^1.5.3"
|
|
tomlkit = "^0.12.2"
|
|
|
|
[tool.poetry.scripts]
|
|
build = "build:main"
|
|
|
|
[tool.scripts-config]
|
|
node_deployer_src = "{$VIRTUAL_ENV}/src/I-Form_Server_Node_Deployer"
|
|
|
|
[tool.scripts-config.readme_files]
|
|
"" = "docs/index.md"
|
|
"Usage" = "docs/usage.md"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.black]
|
|
line-length = 100
|