-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (32 loc) · 1023 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[tool.poetry]
name = "rsync_watch"
version = "0.7.2"
description = "A Python script to monitor the execution of a rsync task."
authors = ["Josef Friedrich <[email protected]>"]
readme = "README.rst"
license = "GPL-3.0-only"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
repository = "https://github.com/Josef-Friedrich/rsync-watch"
[tool.poetry.dependencies]
python = "^3.10"
command-watcher = { git = "https://github.com/Josef-Friedrich/command-watcher.git" }
[tool.poetry.group.dev.dependencies]
mypy = "^1"
pytest = "^8"
readme-patcher = "^0"
ruff = "^0"
Sphinx = "^7"
sphinx-rtd-theme = "^2"
stdout-stderr-capturing = "^0"
tox = "^4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
"rsync-watch.py" = "rsync_watch:main"