-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (51 loc) · 1.52 KB
/
pyproject.toml
File metadata and controls
59 lines (51 loc) · 1.52 KB
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "py2exe-gui"
version = "1.0.0"
description = "Arabic-localized PyQt5 GUI to convert Python scripts to Windows executables via PyInstaller"
readme = "README.md"
requires-python = ">=3.8"
authors = [{ name = "عبدالكريم العبود", email = "abo.saleh.g@gmail.com" }]
license = { text = "Proprietary" }
keywords = ["pyinstaller", "exe", "converter", "gui", "arabic"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Topic :: Software Development :: Build Tools",
"Natural Language :: Arabic",
]
dependencies = [
"PyQt5>=5.15",
"pyinstaller>=5.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"ruff>=0.1",
]
[project.scripts]
py2exe-gui = "py2exe_gui.app:main"
[tool.setuptools.packages.find]
include = ["py2exe_gui*"]
exclude = ["tests*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
[tool.ruff]
line-length = 100
target-version = "py38"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B"]
ignore = ["E501"]
[tool.ruff.lint.per-file-ignores]
"py2exe_gui/strings.py" = ["E501"]