Some checks failed
lint / docker (push) Has been cancelled
Add new documentation sections covering security best practices and authentication system architecture. Update Sphinx configuration and dependencies to support documentation improvements. Changes include: - New security.rst with SSH key management, network security, secrets management - New authentication.rst documenting pluggable auth system and provider setup - Updated Sphinx config to use Alabaster theme and add sphinx-tabs extension - Added docs extra dependencies in pyproject.toml for documentation builds - Updated example configs to use Ed25519 instead of deprecated DSA keys - Added .python-version file for consistent Python version management - Added CLAUDE.md project instructions for AI-assisted development - Minor Dockerfile cleanup removing commented pip install line 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
49 lines
1.2 KiB
TOML
49 lines
1.2 KiB
TOML
[project]
|
|
name = "TISbackup"
|
|
version = "1.8.0"
|
|
description = "Backup server side executed python scripts for managing linux and windows system and application data backups, developed by adminsys for adminsys"
|
|
readme = "README.md"
|
|
dependencies = [
|
|
"flask==3.1.0",
|
|
"huey==2.5.3",
|
|
"iniparse==0.5",
|
|
"paramiko==3.5.1",
|
|
"peewee==3.17.9",
|
|
"pexpect==4.9.0",
|
|
"redis==5.2.1",
|
|
"requests==2.32.3",
|
|
"ruff>=0.13.3",
|
|
"simplejson==3.20.1",
|
|
"six==1.17.0",
|
|
]
|
|
requires-python = ">=3.13"
|
|
|
|
[project.optional-dependencies]
|
|
# Authentication providers
|
|
auth-basic = ["bcrypt>=4.0.0"]
|
|
auth-login = ["flask-login>=0.6.0", "bcrypt>=4.0.0"]
|
|
auth-oauth = ["authlib>=1.3.0", "requests>=2.32.0"]
|
|
# Install all auth providers
|
|
auth-all = ["bcrypt>=4.0.0", "flask-login>=0.6.0", "authlib>=1.3.0", "requests>=2.32.0"]
|
|
# Documentation dependencies
|
|
docs = [
|
|
"docutils",
|
|
"sphinx>=7.0.0,<8.0.0",
|
|
"sphinx_rtd_theme",
|
|
"sphinxjp.themes.revealjs",
|
|
"sphinx-intl",
|
|
"sphinx-tabs",
|
|
]
|
|
|
|
[tool.black]
|
|
line-length = 140
|
|
|
|
|
|
[tool.ruff]
|
|
# Allow lines to be as long as 120.
|
|
line-length = 140
|
|
indent-width = 4
|
|
|
|
[tool.ruff.lint]
|
|
ignore = ["F401", "F403", "F405", "E402", "E701", "E722", "E741"]
|