-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (29 loc) · 910 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
[tool.poetry]
name = "prim-ctrl"
version = "0.7.4"
description = "Primitive Ctrl - Remote control of your phone's Primitive FTPd Android SFTP server and optionally Tailscale VPN."
license = "Apache-2.0"
authors = ["Laszlo Magyar <lmagyar1973@gmail.com>"]
readme = "README.md"
repository = "https://github.com/lmagyar/prim-ctrl"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Operating System :: OS Independent",
]
packages = [{include = "prim_ctrl"}]
[tool.poetry.urls]
"Change Log" = "https://github.com/lmagyar/prim-ctrl/blob/main/CHANGELOG.md"
[tool.poetry.dependencies]
python = "^3.12"
aiohttp = "^3.11.10"
platformdirs = "^4.3.6"
zeroconf = "^0.136.2"
dnspython = "^2.7.0"
tailscale = "^0.6.1"
asyncssh = "^2.19.0"
[tool.poetry.scripts]
prim-ctrl = "prim_ctrl.__main__:run"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"