Kumi
e82ccb2701
- Extended copyright to reflect the current year. - Incremented project version to indicate new features and fixes. - Added a new script entry for easier execution, increasing utility and accessibility. - Updated project URLs for better alignment with current infrastructure. - Refactored settings path for simplicity and consistency across deployments. - Improved code readability and maintenance across several modules by cleaning up redundant code, adding missing type annotations, and ensuring consistent code formatting. - Enhanced logging capabilities and error handling to improve diagnostics and troubleshooting, supporting more robust error recovery mechanisms. - Implemented more graceful handling of termination signals to ensure clean shutdown and resource cleanup, enhancing the robustness of the application in production environments. - Introduced command-line argument parsing for configuration file path customization, improving flexibility in different runtime environments. These changes collectively improve the project's maintainability, reliability, and user experience, laying a stronger foundation for future development.
31 lines
No EOL
809 B
TOML
31 lines
No EOL
809 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "contentmonster"
|
|
version = "0.0.7"
|
|
authors = [
|
|
{ name="Kumi Systems e.U.", email="office@kumi.systems" },
|
|
]
|
|
description = "File replicator"
|
|
readme = "README.md"
|
|
license = { file="LICENSE" }
|
|
requires-python = ">=3.8"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: POSIX :: Linux",
|
|
]
|
|
dependencies = [
|
|
"paramiko",
|
|
"watchdog"
|
|
]
|
|
|
|
[project.scripts]
|
|
contentmonster = "contentmonster.worker:main"
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://git.private.coffee/kumisystems/contentmonster"
|
|
"Bug Tracker" = "https://git.private.coffee/kumisystems/contentmonster/issues"
|
|
"Source Code" = "https://git.private.coffee/kumisystems/contentmonster" |