-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
39 lines (33 loc) · 1018 Bytes
/
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
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[tool.maturin]
manifest-path = "Cargo.toml"
features = ["pyo3/extension-module"]
include = [
"LICENSE*"
]
[tool.maturin.target."x86_64-apple-darwin"]
macos-deployment-target = "10.12"
[tool.maturin.target."aarch64-apple-darwin"]
macos-deployment-target = "11.0"
[tool.ruff]
include = ['*.py']
[project]
name = "accesskit"
requires-python = ">= 3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"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",
"Topic :: Software Development :: User Interfaces"
]
[project.urls]
Homepage = "https://github.com/AccessKit/accesskit-python"