-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 1.25 KB
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
37
38
39
40
41
42
43
[tool.poetry]
name = "watchsync"
version = "0.1.3"
description = "A Python-based tool for real-time file monitoring and synchronization, designed to replicate changes between local or remote locations."
authors = ["Roberto Lizana <rober.lizana@gmail.com>"]
readme = "README.md"
license = "AGPL-3.0"
homepage = "https://github.com/rlizana/watchsync"
repository = "https://github.com/rlizana/watchsync"
keywords = ["rsync", "watchdog", "real-time", "synchronization", "watchfiles", "sync", "inotify", "file monitoring", "file synchronization", "file replication", "file sync", "file watcher"]
packages = [
{ include = "watchsync", from = "." }
]
[tool.poetry.dependencies]
python = "^3.12"
cleo = "^2.1.0"
watchdog = "^6.0.0"
pyyaml = "^6.0.2"
[tool.poetry.group.dev.dependencies]
coverage = "^7.6.10"
pre-commit = "^3.0.0"
poetry-dynamic-versioning = "^1.4.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
watchsync = "watchsync.__main__:main"
watchsyncd = "watchsync.daemon.watchsyncd:main"
[tool.isort]
profile = "black"
known_first_party = ["watchsync"]
force_sort_within_sections = true
line_length = 79
[tool.flake8]
max-line-length = 79
import-order-style = "google"
application-import-names = ["watchsync"]