-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
71 lines (65 loc) · 1.96 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
[build-system]
requires = ["setuptools >= 60"]
build-backend = "setuptools.build_meta"
[project]
name = "mobile-forge"
version = "2024.0.0"
description = "A tool to manage building cross-platform binary wheels for mobile devices"
readme = { file = "README.md", content-type = "text/x-rst"}
requires-python = ">=3.9"
license = { file = "LICENSE" }
authors = [
{name = "Russell Keith-Magee", email = "[email protected]"}
]
maintainers = [
{name = "Russell Keith-Magee", email = "[email protected]"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"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",
]
dependencies = [
# Use a post 1.5.0 release that includes the merged iOS patch
"crossenv @ git+https://github.com/benfogle/crossenv@c801a526403a06f653939a0c45534d7703f9066f",
"httpx == 0.27.2",
"Jinja2 == 3.1.4",
"jsonschema == 4.23.0",
"packaging == 24.2",
"PyYAML == 6.0.2",
"tomli >= 2.0,< 3.0; python_version <= '3.10'",
"wheel == 0.45.1",
]
[project.optional-dependencies]
dev = [
"pre-commit == 4.0.1",
]
[project.urls]
Homepage = "https://beeware.org"
Funding = "https://beeware.org/contributing/membership/"
Repository = "https://github.com/beeware/mobile-forge.git"
Tracker = "https://github.com/beeware/briefcase/issues"
[project.scripts]
forge = "forge.__main__:main"
forge-env = "forge.cross:main"
[tool.isort]
profile = "black"
skip_glob = [
"docs/conf.py",
"venv*",
"local",
]
multi_line_output = 3
[tool.codespell]
skip = '.git,*.pdf,*.svg'
# the way to make case sensitive skips of words etc
ignore-regex = '\bNd\b'
# case insensitive
# ignore-words-list = ''