-
Notifications
You must be signed in to change notification settings - Fork 36
/
pyproject.toml
95 lines (84 loc) · 3.21 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
84
85
86
87
88
89
90
91
92
93
94
95
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "py2app"
authors = [
{ name = "Ronald Oussoren", email = "[email protected]" }
]
description = "Create standalone macOS applications with Python"
dynamic = [ "version"]
requires-python = ">=3.8,<4"
readme = "README.rst"
license = { text = "MIT" }
keywords=[".app", "standalone"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: MacOS X :: Cocoa",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"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",
"Programming Language :: Python :: 3.13",
"Programming Language :: Objective C",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: User Interfaces",
"Topic :: Software Development :: Build Tools",
]
dependencies=[
"setuptools",
"packaging",
"rich >= 12.0",
"altgraph>=0.17",
"modulegraph>=0.19",
"modulegraph2",
"macholib>=1.16",
"importlib_metadata>=4.7; python_version < '3.10'",
"importlib_resources; python_version < '3.10'",
"tomli; python_version < '3.11'",
]
[project.optional-dependencies]
setuptools = [
"setuptools >= 65",
]
[project.urls]
"Documentation" = "https://py2app.readthedocs.io/"
"Source Code" = "https://github.com/ronaldoussoren/py2app/"
"Issue Tracker" = "https://github.com/ronaldoussoren/py2app/issues"
"Supporting" = "https://blog.ronaldoussoren.net/support/"
#[project.scripts]
#py2app = "py2app.__main__:main"
[project.entry-points."setuptools.finalize_distribution_options"]
py2app = "py2app._setuptools_stub:finalize_distribution_options"
[project.entry-points."distutils.commands"]
py2app = "py2app._setuptools_stub:py2app"
[project.entry-points."distutils.setup_keywords"]
app = "py2app._setuptools_stub:validate_target"
plugin = "py2app._setuptools_stub:validate_target"
[project.entry-points."py2app.converter"]
xib = "py2app.converters.nibfile:convert_xib"
nib = "py2app.converters.nibfile:convert_nib"
xcdatamodel = "py2app.converters.coredata:convert_datamodel"
xcmappingmodel = "py2app.converters.coredata:convert_mappingmodel"
[tool.flit.sdist]
exclude = [".github"]
# This includes prebuild stub executables, even though those are
# depedant on the python version.
# XXX: Move back to setuptools to better control wheel creation
# - do not include launcher stubs in sdist
# - generate the launcher stubs when building a wheel
# - wheel is python-version specific (due to launcher binaries)
# XXX: All of these should be automated to enable using trusted
# publishers on PyPI for releases.
include = ["src/py2app/_apptemplate/launcher-*"]