-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
30 lines (26 loc) · 881 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
[tool.poetry]
name = "prim-sync"
version = "0.8.2"
description = "Primitive Sync - Bidirectional and unidirectional sync over SFTP. Multiplatform Python script optimized for the Primitive FTPd Android SFTP server."
license = "Apache-2.0"
authors = ["Laszlo Magyar <lmagyar1973@gmail.com>"]
readme = "README.md"
repository = "https://github.com/lmagyar/prim-sync"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Operating System :: OS Independent",
]
packages = [{include = "prim_sync"}]
[tool.poetry.urls]
"Change Log" = "https://github.com/lmagyar/prim-sync/blob/main/CHANGELOG.md"
[tool.poetry.dependencies]
python = "^3.12"
paramiko = "^3.5.0"
platformdirs = "^4.3.6"
zeroconf = "^0.136.2"
[tool.poetry.scripts]
prim-sync = "prim_sync.__main__:run"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"