| 1 | [build-system] |
| 2 | requires = ["setuptools>=69.0", "wheel"] |
| 3 | build-backend = "setuptools.build_meta" |
| 4 | |
| 5 | [project] |
| 6 | name = "wulftp" |
| 7 | version = "0.1.0" |
| 8 | description = "Simple PyQt6 SFTP client for family backups" |
| 9 | authors = [{name="mfw"}] |
| 10 | dependencies = [ |
| 11 | "paramiko", |
| 12 | "PyQt6", |
| 13 | "python-dotenv", |
| 14 | "qtawesome", |
| 15 | ] |
| 16 | |
| 17 | [project.scripts] |
| 18 | wulFTP = "wulftp:main" |
| 19 | |
| 20 | [tool.setuptools.packages.find] |
| 21 | where = ["src"] |