contentmonster/pyproject.toml

31 lines
809 B
TOML
Raw Permalink Normal View History

2022-09-19 07:33:33 +00:00
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "contentmonster"
version = "0.0.7"
2022-09-19 07:33:33 +00:00
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"
2022-09-19 07:33:33 +00:00
[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"