diff options
| author | user@node5.net <user@node5.net> | 2026-06-17 22:22:03 +0200 |
|---|---|---|
| committer | user@node5.net <user@node5.net> | 2026-06-17 22:22:03 +0200 |
| commit | 547d937477861188866a11352363018e4ad246fb (patch) | |
| tree | 82861fed919181dbcbf9fb70171ca1bfc94b1ca8 /pyproject.toml | |
| parent | f5605364e9635c2f0fdbc883098014959edc7cf0 (diff) | |
nixify repo
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..ef976b0 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,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" + |
