Files
unisync/pyproject.toml
furtest e639c12c20 docs : Add sphinx for handling documentation
Edit gitignore by ignoring the docs/build directory
Add sphinx dependencies to pyproject
Add docs folder
2026-01-04 19:18:57 +01:00

30 lines
526 B
TOML

[project]
name = "unisync"
version = "0.1.0"
description = ""
authors = [
{name = "Paul Retourné",email = "paul.retourne@orange.fr"}
]
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
]
[project.scripts]
unisync = "unisync.main:main"
[tool.poetry]
packages = [{include = "unisync", from = "src"}]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[dependency-groups]
docs = [
"sphinx (>=9.1.0,<10.0.0)",
"sphinx-rtd-theme (>=3.0.2,<4.0.0)",
]