forked from beeware/briefcase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
164 lines (158 loc) · 4.85 KB
/
setup.cfg
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
[metadata]
name = briefcase
url = http://beeware.org/briefcase
project_urls =
Funding = https://beeware.org/contributing/membership/
Documentation = http://briefcase.readthedocs.io/en/latest/
Tracker = https://github.com/beeware/briefcase/issues
Source = https://github.com/beeware/briefcase
author = Russell Keith-Magee
author_email = [email protected]
maintainer = Russell Keith-Magee
maintainer_email = [email protected]
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
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
Programming Language :: Python :: 3 :: Only
Topic :: Software Development
Topic :: Utilities
license = New BSD
license_files =
LICENSE
description = Tools to support converting a Python project into a standalone native application.
long_description = file: README.rst
long_description_content_type = text/x-rst; charset=UTF-8
keywords =
app
packaging
installer
macOS
iOS
android
mobile
windows
tvOS
watch
watchOS
wearos
web
pyscript
pyodide
platforms = any
[options]
zip_safe = False
packages = find:
python_requires = >= 3.8
include_package_data = True
package_dir =
= src
install_requires =
# Dependencies required at runtime are set as ranges to ensure maximum
# compatibility with the end-user's development environment.
#
# Any dependency that is part of the "core python toolchain" (e.g. pip,
# wheel) specify a minimum version, but no maximum, because we always want
# the most recent version.
importlib_metadata >= 4.4; python_version <= "3.9"
packaging >= 22.0
pip >= 23.1.1
setuptools >= 60
wheel >= 0.37
build >= 0.10
# For the remaining packages: We set the lower version limit to the lowest
# possible version that satisfies our API needs. If the package uses semver,
# we set a limit to prevent the next major version (which will potentially
# cause API breakages). If the package uses calver, we don't pin the upper
# version, as the upper version provides no basis for determining API
# stability.
cookiecutter >= 2.2, < 3.0
dmgbuild >= 1.6, < 2.0; sys_platform == "darwin"
GitPython >= 3.1, < 4.0
platformdirs >= 2.6, < 4.0
psutil >= 5.9, < 6.0
requests >= 2.28, < 3.0
rich >= 12.6, < 14.0
tomli >= 2.0, < 3.0; python_version <= "3.10"
tomli_w >= 1.0, < 2.0
[options.extras_require]
# Extras used by developers *of* briefcase are pinned to specific versions to
# ensure environment consistency.
dev =
coverage[toml] == 7.2.7
coverage-conditional-plugin == 0.9.0
pre-commit == 3.3.3
pytest == 7.4.0
pytest-xdist == 3.3.1
setuptools_scm[toml] == 7.1.0
tox == 4.6.4
docs =
furo == 2023.5.20
pyenchant == 3.2.2
sphinx == 7.0.1
sphinx_tabs == 3.4.1
sphinx-autobuild == 2021.3.14
sphinx-copybutton == 0.5.2
sphinxcontrib-spelling == 8.0.0
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
briefcase = briefcase.__main__:main
briefcase.platforms =
android = briefcase.platforms.android
iOS = briefcase.platforms.iOS
linux = briefcase.platforms.linux
macOS = briefcase.platforms.macOS
# tvOS = briefcase.platforms.tvOS
# watchOS = briefcase.platforms.watchOS
# wearos = briefcase.platforms.wearos
web = briefcase.platforms.web
windows = briefcase.platforms.windows
briefcase.formats.android =
gradle = briefcase.platforms.android.gradle
briefcase.formats.iOS =
xcode = briefcase.platforms.iOS.xcode
briefcase.formats.linux =
appimage = briefcase.platforms.linux.appimage
flatpak = briefcase.platforms.linux.flatpak
system = briefcase.platforms.linux.system
# snap = briefcase.platforms.linux.snap
briefcase.formats.macOS =
app = briefcase.platforms.macOS.app
xcode = briefcase.platforms.macOS.xcode
# briefcase.formats.tvOS =
# xcode = briefcase.platforms.tvOS.xcode
# briefcase.formats.watchOS =
# xcode = briefcase.platforms.watchOS.xcode
# briefcase.formats.wearos =
# gradle = briefcase.platforms.wearos.gradle
briefcase.formats.web =
static = briefcase.platforms.web.static
briefcase.formats.windows =
app = briefcase.platforms.windows.app
visualstudio = briefcase.platforms.windows.visualstudio
[aliases]
test=pytest
[flake8]
# https://flake8.readthedocs.org/en/latest/
exclude=\
venv*/*,\
local/*,\
docs/*,\
build/*,\
tests/apps/*,\
.eggs/*,\
.tox/*
max-line-length = 119
extend-ignore =
# whitespace before :
# See https://github.com/PyCQA/pycodestyle/issues/373
E203,