forked from mantis-software-company/finch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
83 lines (69 loc) · 1.99 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[project]
name = "finch"
version = "1.0.0a1"
description = "Open source and cross-platform GUI client for Amazon S3 and compatible storage platforms"
authors = [
{name = "Furkan Kalkan", email = "[email protected]"},
]
dependencies = [
"PyQt5==5.15.11",
"boto3==1.35.5",
"keyring==25.3.0",
"python-slugify==8.0.4",
]
readme = "README.md"
license = {text = "MIT"}
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Microsoft",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Topic :: Internet",
"Topic :: Software Development",
"Topic :: Utilities",
]
[project.urls]
Homepage = "https://github.com/mantis-software-company/finch"
[project.scripts]
finch = "finch.__main__:main"
[tool.setuptools.packages]
find = {}
[tool.setuptools.package-data]
"finch" = ["img/*.png", "img/*.svg"]
[tool.cxfreeze]
executables = [
{script = "finch.py", base = "gui", target_name="Finch S3 Client", copyright="Copyright (C) 2024 Furkan Kalkan", icon = "icon.ico", shortcut_name="Finch S3 Client", shortcut_dir='StartMenuFolder'}
]
[tool.cxfreeze.build_exe]
include_msvcr = true
excludes = [
"tkinter",
"unittest",
"pydoc",
]
includes = [
'keyring.backends.SecretService',
'keyring.backends.libsecret',
'keyring.backends.chainer',
'keyring.backends.Windows',
'keyring.backends.kwallet',
'keyring.backends.macOS'
]
[tool.cxfreeze.bdist_mac]
iconfile = "icon.png"
bundle_name = "Finch S3 Client"
codesign_identity = "Developer ID Application: Furkan Kalkan (3YR4725H5N)"
codesign_options = "runtime"
codesign_deep = true
codesign_timestamp = true
codesign_verify = true
[tool.cxfreeze.bdist_dmg]
applications_shortcut = true
volume_label = "Finch S3 Client"
background = "builtin-arrow"
[tool.cxfreeze.bdist_msi]
install_icon = "icon.ico"