forked from PyO3/maturin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
39 lines (32 loc) · 888 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>=0.15,<0.16"]
build-backend = "maturin"
[tool.maturin]
bindings = "pyo3"
[tool.maturin.target."x86_64-apple-darwin"]
macos-deployment-target = "10.12"
[tool.maturin.target."aarch64-apple-darwin"]
macos-deployment-target = "11.0"
[project]
# The name pyo3_pure instead of pyo3-pure is intentional,
# it's used as a crate name resolution regression test
name = "pyo3_pure"
version = "0.1.0+abc123de"
classifiers = [
"Programming Language :: Rust"
]
description = "Implements a dummy function in Rust"
readme = "README.md"
maintainers = [
{name = "messense", email = "[email protected]"}
]
license = { file = "LICENSE" }
[project.optional-dependencies]
test = [
"attrs",
"boltons; sys_platform == 'win32'"
]
[project.scripts]
get_42 = "pyo3_pure:DummyClass.get_42"
[project.gui-scripts]
get_42_gui = "pyo3_pure:DummyClass.get_42"