forked from beeware/briefcase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
138 lines (129 loc) · 3.63 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
[metadata]
name = briefcase
version = attr: src.briefcase.__version__
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 = russell@keith-magee.com
maintainer = Russell Keith-Magee
maintainer_email = russell@keith-magee.com
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.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3 :: Only
Topic :: Software Development
Topic :: Utilities
license = New BSD
license_file = 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
platforms = any
[options]
zip_safe = False
packages = find:
python_requires = >= 3.7
include_package_data = True
package_dir =
= src
install_requires =
pip >= 22
setuptools >= 60
wheel >= 0.34
cookiecutter >= 1.0
tomli >= 2.0.0; python_version <= "3.10"
requests >= 2.22.0
GitPython >= 3.0.8
dmgbuild >= 1.3.3; sys_platform == "darwin"
psutil ~= 5.9.0
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
briefcase = briefcase.__main__:main
briefcase.platforms =
android = briefcase.platforms.android
# django = briefcase.platforms.django
iOS = briefcase.platforms.iOS
linux = briefcase.platforms.linux
macOS = briefcase.platforms.macOS
# tvOS = briefcase.platforms.tvOS
# watchOS = briefcase.platforms.watchOS
# wearos = briefcase.platforms.wearos
windows = briefcase.platforms.windows
briefcase.formats.android =
gradle = briefcase.platforms.android.gradle
# briefcase.formats.django =
# project = briefcase.platforms.django.project
# app = briefcase.platforms.django.app
briefcase.formats.ios =
xcode = briefcase.platforms.iOS.xcode
briefcase.formats.linux =
appimage = briefcase.platforms.linux.appimage
# deb = briefcase.platforms.linux.deb
# flatpak = briefcase.platforms.linux.flatpak
# rpm = briefcase.platforms.linux.rpm
# snap = briefcase.platforms.linux.snap
briefcase.formats.macos =
app = briefcase.platforms.macOS.app
xcode = briefcase.platforms.macOS.xcode
homebrew = briefcase.platforms.macOS.homebrew
# 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.windows =
msi = briefcase.platforms.windows.msi
[aliases]
test=pytest
[bdist_wheel]
universal=1
[flake8]
# https://flake8.readthedocs.org/en/latest/
exclude=\
venv*/*,\
local/*,\
docs/*,\
build/*,\
tests/apps/*,\
.eggs/*,\
.tox/*
max-complexity = 10
max-line-length = 119
ignore = E121,E123,E126,E226,E24,E704,W503,W504,C901
[isort]
skip_glob =
docs/conf.py
venv*
local
multi_line_output=3
[tool:pytest]
testpaths = tests
# need to ensure build directories aren't excluded from recursion
norecursedirs =