Files
ars c8ab126cd2 Merge sphinx-docs (CLI i18n + Sphinx docs) into main
# Conflicts:
#	.github/workflows/ci.yml
#	docs/cli.md
2026-06-25 02:57:03 +03:00

55 lines
1.1 KiB
TOML

[build-system]
requires = ["setuptools>=75.0"]
build-backend = "setuptools.build_meta"
[project]
name = "nexus_sync"
version = "0.1.0"
description = "A utility that allows you to manage your computers from a centralized server."
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115.0",
"pydantic>=2.10.0",
"PyYAML>=6.0.0",
"sqlalchemy>=2.0.0",
"uvicorn[standard]>=0.34.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"httpx>=0.28.0",
"black>=24.0",
"pyinstaller>=6.0",
"build>=1.2.0",
"doit>=0.36.0",
"mypy>=1.0",
"types-PyYAML>=6.0.12",
"pre-commit>=4.0",
"Babel>=2.14.0"
]
docs = [
"sphinx>=7.0",
"myst-parser>=2.0",
"furo>=2024.1.29"
]
[project.scripts]
nexus-cli = "nexus_sync.cli.__main__:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
nexus_sync = ["locale/**/*.mo"]
[tool.black]
line-length = 100
target-version = ["py311"]
[tool.pytest.ini_options]
testpaths = ["tests"]