blob: ef976b020352742916847e8048b0081650355025 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
[project]
name = "ssh.node5.net"
version = "0.1.0"
description = "flask project to host ssh.node5.net, ssh password login attempt visualizer"
# define any python dependencies
dependencies = [
"flask~=3.0",
"pyyaml~=6.0",
"psycopg~=3.1",
]
# define the cli executable
# here, we define the entry point to be the 'main()' function in the module 'app/main.py'
[project.scripts]
node5-ssh = "ssh_node5_net:main"
|